Skip to content

Commit

Permalink
streamanalytics-track1 (Azure#18392)
Browse files Browse the repository at this point in the history
  • Loading branch information
colawwj authored Dec 6, 2021
1 parent 8fdfd62 commit b024887
Show file tree
Hide file tree
Showing 21 changed files with 1,780 additions and 326 deletions.
8 changes: 3 additions & 5 deletions sdk/streamanalytics/arm-streamanalytics/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
## Azure StreamAnalyticsManagementClient SDK for JavaScript

This package contains an isomorphic SDK (runs both in Node.js and in browsers) for StreamAnalyticsManagementClient.
This package contains an isomorphic SDK (runs both in node.js and in browsers) for StreamAnalyticsManagementClient.

### Currently supported environments

- [LTS versions of Node.js](https://nodejs.org/about/releases/)
- Latest versions of Safari, Chrome, Edge, and Firefox.
- Latest versions of Safari, Chrome, Edge and Firefox.

### Prerequisites

Expand All @@ -21,7 +21,6 @@ Install both packages using the below command:
```bash
npm install --save @azure/arm-streamanalytics @azure/identity
```

> **Note**: You may have used either `@azure/ms-rest-nodeauth` or `@azure/ms-rest-browserauth` in 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](https://nodejs.org/about/releases/), or are writing a client side browser application, we strongly encourage you to upgrade to `@azure/identity` which uses the latest versions of Azure Active Directory and MSAL APIs and provides more authentication options.

Expand All @@ -37,7 +36,6 @@ If you are on a [Node.js that has LTS status](https://nodejs.org/about/releases/

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](https://docs.microsoft.com/javascript/api) to get started.

#### nodejs - Authentication, client creation, and get functions as an example written in JavaScript.

##### Sample code
Expand Down Expand Up @@ -88,7 +86,7 @@ In browser applications, we recommend using the `InteractiveBrowserCredential` t
const credential = new InteractiveBrowserCredential(
{
clientId: "<client id for your Azure AD app>",
tenantId: "<optional tenant for your organization>"
tenant: "<optional tenant for your organization>"
});
const client = new Azure.ArmStreamanalytics.StreamAnalyticsManagementClient(creds, subscriptionId);
const resourceGroupName = "testresourceGroupName";
Expand Down
2 changes: 1 addition & 1 deletion sdk/streamanalytics/arm-streamanalytics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@azure/arm-streamanalytics",
"author": "Microsoft Corporation",
"description": "StreamAnalyticsManagementClient Library with typescript type definitions for node.js and browser.",
"version": "2.1.1",
"version": "3.0.0",
"dependencies": {
"@azure/ms-rest-azure-js": "^2.1.0",
"@azure/ms-rest-js": "^2.2.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,14 @@ export {
PrivateLinkConnectionState,
PrivateLinkServiceConnection,
ProxyResource,
QueryTestingResult,
RawOutputDatasource,
RawReferenceInputDataSource,
RawStreamInputDataSource,
ReferenceInputDataSource,
ReferenceInputProperties,
Resource,
SampleInputResult,
ScalarFunctionProperties,
Serialization,
ServiceBusQueueOutputDataSource,
Expand All @@ -85,6 +90,7 @@ export {
StreamInputProperties,
SubResource,
SubscriptionQuota,
TestDatasourceResult,
TrackedResource,
Transformation
} from "../models/mappers";
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export {
BlobOutputDataSource,
BlobReferenceInputDataSource,
BlobStreamInputDataSource,
CloudError,
Cluster,
ClusterInfo,
ClusterProperties,
Expand All @@ -43,6 +42,9 @@ export {
DiagnosticCondition,
Diagnostics,
DocumentDbOutputDataSource,
ErrorDetails,
ErrorError,
ErrorModel,
ErrorResponse,
EventHubOutputDataSource,
EventHubStreamInputDataSource,
Expand Down Expand Up @@ -76,10 +78,15 @@ export {
PrivateLinkConnectionState,
PrivateLinkServiceConnection,
ProxyResource,
QueryTestingResult,
RawOutputDatasource,
RawReferenceInputDataSource,
RawStreamInputDataSource,
ReferenceInputDataSource,
ReferenceInputProperties,
Resource,
ResourceTestStatus,
SampleInputResult,
ScalarFunctionProperties,
Serialization,
ServiceBusQueueOutputDataSource,
Expand All @@ -91,6 +98,7 @@ export {
StreamInputProperties,
SubResource,
SubscriptionQuota,
TestDatasourceResult,
TrackedResource,
Transformation
} from "../models/mappers";
Loading

0 comments on commit b024887

Please sign in to comment.