Skip to content

Commit

Permalink
CodeGen from PR 16573 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
[Azure Stream Analytics] New 2021 preview version (Azure#16573)

* copy 2017 folder

* add userAssignedIdenties

* update readme

* copy GA version to new preview folder

* update Identity

* update readme2

* some fixes

* missed one

* one more

* change 2020 to 2021

* hopefully no breaking changes

* address comments

* add functions

* add customClr

Co-authored-by: Roslyn Lu <roslu@microsoft.com>
  • Loading branch information
SDKAuto and Roslyn Lu committed Nov 9, 2021
1 parent b049934 commit 3deae59
Show file tree
Hide file tree
Showing 26 changed files with 3,085 additions and 5,705 deletions.
22 changes: 7 additions & 15 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,8 +36,7 @@ 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.
#### nodejs - Authentication, client creation, and list operations as an example written in JavaScript.

##### Sample code

Expand All @@ -51,10 +49,7 @@ const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"];
// Please note that you can also use credentials from the `@azure/ms-rest-nodeauth` package instead.
const creds = new DefaultAzureCredential();
const client = new StreamAnalyticsManagementClient(creds, subscriptionId);
const resourceGroupName = "testresourceGroupName";
const jobName = "testjobName";
const functionName = "testfunctionName";
client.functions.get(resourceGroupName, jobName, functionName).then((result) => {
client.operations.list().then((result) => {
console.log("The result is:");
console.log(result);
}).catch((err) => {
Expand All @@ -63,7 +58,7 @@ client.functions.get(resourceGroupName, jobName, functionName).then((result) =>
});
```

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

In browser applications, we recommend using the `InteractiveBrowserCredential` that interactively authenticates using the default system browser.
- See [Single-page application: App registration guide](https://docs.microsoft.com/azure/active-directory/develop/scenario-spa-app-registration) to configure your app registration for the browser.
Expand All @@ -88,13 +83,10 @@ 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";
const jobName = "testjobName";
const functionName = "testfunctionName";
client.functions.get(resourceGroupName, jobName, functionName).then((result) => {
client.operations.list().then((result) => {
console.log("The result is:");
console.log(result);
}).catch((err) => {
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 @@ -27,7 +27,7 @@
"rollup-plugin-sourcemaps": "^0.4.2",
"uglify-js": "^3.6.0"
},
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/feature/v4/sdk/streamanalytics/arm-streamanalytics",
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/streamanalytics/arm-streamanalytics",
"repository": {
"type": "git",
"url": "https://github.com/Azure/azure-sdk-for-js.git"
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -8,47 +8,35 @@

export {
discriminators,
AggregateFunctionProperties,
AvroSerialization,
AzureDataLakeStoreOutputDataSource,
AzureFunctionOutputDataSource,
AzureMachineLearningServiceFunctionBinding,
AzureMachineLearningServiceFunctionRetrieveDefaultDefinitionParameters,
AzureMachineLearningServiceInputColumn,
AzureMachineLearningServiceOutputColumn,
AzureMachineLearningStudioFunctionBinding,
AzureMachineLearningStudioFunctionRetrieveDefaultDefinitionParameters,
AzureMachineLearningStudioInputColumn,
AzureMachineLearningStudioInputs,
AzureMachineLearningStudioOutputColumn,
AzureMachineLearningWebServiceFunctionBinding,
AzureMachineLearningWebServiceFunctionRetrieveDefaultDefinitionParameters,
AzureMachineLearningWebServiceInputColumn,
AzureMachineLearningWebServiceInputs,
AzureMachineLearningWebServiceOutputColumn,
AzureSqlDatabaseOutputDataSource,
AzureSqlReferenceInputDataSource,
AzureSqlReferenceInputDataSourceProperties,
AzureSynapseOutputDataSource,
AzureTableOutputDataSource,
BaseResource,
BlobOutputDataSource,
BlobReferenceInputDataSource,
BlobStreamInputDataSource,
CloudError,
Cluster,
ClusterInfo,
ClusterProperties,
ClusterSku,
Compression,
CSharpFunctionBinding,
CSharpFunctionRetrieveDefaultDefinitionParameters,
CsvSerialization,
CustomClrSerialization,
DiagnosticCondition,
Diagnostics,
DocumentDbOutputDataSource,
ErrorDetails,
ErrorError,
ErrorModel,
ErrorResponse,
EventHubOutputDataSource,
EventHubStreamInputDataSource,
EventHubV2OutputDataSource,
EventHubV2StreamInputDataSource,
External,
FunctionBinding,
FunctionInput,
FunctionListResult,
Expand All @@ -71,10 +59,6 @@ export {
OutputDataSource,
ParquetSerialization,
PowerBIOutputDataSource,
PrivateEndpoint,
PrivateEndpointProperties,
PrivateLinkConnectionState,
PrivateLinkServiceConnection,
ProxyResource,
ReferenceInputDataSource,
ReferenceInputProperties,
Expand All @@ -84,9 +68,9 @@ export {
Serialization,
ServiceBusQueueOutputDataSource,
ServiceBusTopicOutputDataSource,
Sku,
StorageAccount,
StreamingJob,
StreamingJobSku,
StreamInputDataSource,
StreamInputProperties,
SubResource,
Expand Down
Loading

0 comments on commit 3deae59

Please sign in to comment.