Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 21 additions & 10 deletions sdk/streamanalytics/arm-streamanalytics/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,26 @@
# Release History

## 4.1.0 (2022-06-29)

**Features**

## 4.0.2 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes

- Added Interface GatewayMessageBusSourceProperties
- Added Type Alias AggregateFunctionProperties
- Added Type Alias AzureFunctionOutputDataSource
- Added Type Alias FileReferenceInputDataSource
- Added Type Alias GatewayMessageBusOutputDataSource
- Added Type Alias GatewayMessageBusOutputDataSourceProperties
- Added Type Alias GatewayMessageBusStreamInputDataSource
- Added Type Alias GatewayMessageBusStreamInputDataSourceProperties
- Interface BlobDataSourceProperties has a new optional parameter authenticationMode
- Interface FunctionProperties has a new optional parameter binding
- Interface FunctionProperties has a new optional parameter inputs
- Interface FunctionProperties has a new optional parameter output
- Type Alias BlobOutputDataSource has a new parameter blobPathPrefix
- Type Alias BlobOutputDataSourceProperties has a new parameter blobPathPrefix
- Type Alias BlobReferenceInputDataSource has a new parameter authenticationMode
- Type Alias BlobStreamInputDataSource has a new parameter authenticationMode

## 4.0.1 (2022-05-05)

**Features**
Expand Down
12 changes: 6 additions & 6 deletions sdk/streamanalytics/arm-streamanalytics/_meta.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"commit": "d600759c3516b61a7c353bc8682bccbab85a6f65",
"readme": "specification\\streamanalytics\\resource-manager\\readme.md",
"autorest_command": "autorest --version=3.7.3 --typescript --modelerfour.lenient-model-deduplication --head-as-boolean=true --license-header=MICROSOFT_MIT_NO_VERSION --generate-test --typescript-sdks-folder=D:\\work\\azure-sdk-for-js ..\\azure-rest-api-specs\\specification\\streamanalytics\\resource-manager\\readme.md --use=@autorest/[email protected].20220408.1 --generate-sample=true",
"commit": "d0d8ebda480e8b57601c3f17ffd5cb1cd7597b44",
"readme": "specification/streamanalytics/resource-manager/readme.md",
"autorest_command": "autorest --version=3.7.3 --typescript --modelerfour.lenient-model-deduplication --head-as-boolean=true --license-header=MICROSOFT_MIT_NO_VERSION --generate-test --typescript-sdks-folder=/mnt/vss/_work/1/s/azure-sdk-for-js ../azure-rest-api-specs/specification/streamanalytics/resource-manager/readme.md --use=@autorest/[email protected].20220425.1",
"repository_url": "https://github.com/Azure/azure-rest-api-specs.git",
"release_tool": "@azure-tools/[email protected].0",
"use": "@autorest/[email protected].20220408.1"
}
"release_tool": "@azure-tools/[email protected].2",
"use": "@autorest/[email protected].20220425.1"
}
22 changes: 8 additions & 14 deletions sdk/streamanalytics/arm-streamanalytics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"sdk-type": "mgmt",
"author": "Microsoft Corporation",
"description": "A generated SDK for StreamAnalyticsManagementClient.",
"version": "4.0.2",
"version": "4.1.0",
"engines": {
"node": ">=12.0.0"
},
Expand Down Expand Up @@ -40,9 +40,11 @@
"uglify-js": "^3.4.9",
"rimraf": "^3.0.0",
"@azure/identity": "^2.0.1",
"@azure-tools/test-recorder": "^1.0.0",
"@azure-tools/test-recorder": "^2.0.0",
"@azure-tools/test-credential": "^1.0.0",
"mocha": "^7.1.1",
"cross-env": "^7.0.2"
"cross-env": "^7.0.2",
"@azure/dev-tool": "^1.0.0"
},
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/streamanalytics/arm-streamanalytics",
"repository": {
Expand Down Expand Up @@ -93,7 +95,7 @@
"unit-test:node": "cross-env TEST_MODE=playback npm run integration-test:node",
"unit-test:browser": "echo skipped",
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
"integration-test:node": "mocha -r esm --require ts-node/register --timeout 1200000 --full-trace test/*.ts --reporter ../../../common/tools/mocha-multi-reporter.js",
"integration-test:node": "dev-tool run test:node-ts-input -- --timeout 1200000 'test/*.ts'",
"integration-test:browser": "echo skipped",
"docs": "echo skipped"
},
Expand All @@ -106,13 +108,5 @@
}
]
},
"autoPublish": true,
"//sampleConfiguration": {
"productName": "",
"productSlugs": [
"azure"
],
"disableDocsMs": true,
"apiRefLink": "https://docs.microsoft.com/javascript/api/@azure/arm-streamanalytics?view=azure-node-preview"
}
}
"autoPublish": true
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ import { PagedAsyncIterableIterator } from '@azure/core-paging';
import { PollerLike } from '@azure/core-lro';
import { PollOperationState } from '@azure/core-lro';

// @public
export type AggregateFunctionProperties = FunctionProperties & {
type: "Aggregate";
};

// @public
export type AuthenticationMode = string;

Expand Down Expand Up @@ -43,6 +48,16 @@ export type AzureDataLakeStoreOutputDataSourceProperties = OAuthBasedDataSourceP
authenticationMode?: AuthenticationMode;
};

// @public
export type AzureFunctionOutputDataSource = OutputDataSource & {
type: "Microsoft.AzureFunction";
functionAppName?: string;
functionName?: string;
apiKey?: string;
maxBatchSize?: number;
maxBatchCount?: number;
};

// @public
export type AzureMachineLearningWebServiceFunctionBinding = FunctionBinding & {
type: "Microsoft.MachineLearning/WebService";
Expand Down Expand Up @@ -157,6 +172,7 @@ export type AzureTableOutputDataSource = OutputDataSource & {

// @public
export interface BlobDataSourceProperties {
authenticationMode?: AuthenticationMode;
container?: string;
dateFormat?: string;
pathPattern?: string;
Expand All @@ -173,11 +189,12 @@ export type BlobOutputDataSource = OutputDataSource & {
dateFormat?: string;
timeFormat?: string;
authenticationMode?: AuthenticationMode;
blobPathPrefix?: string;
};

// @public
export type BlobOutputDataSourceProperties = BlobDataSourceProperties & {
authenticationMode?: AuthenticationMode;
blobPathPrefix?: string;
};

// @public
Expand All @@ -188,6 +205,7 @@ export type BlobReferenceInputDataSource = ReferenceInputDataSource & {
pathPattern?: string;
dateFormat?: string;
timeFormat?: string;
authenticationMode?: AuthenticationMode;
};

// @public
Expand All @@ -201,6 +219,7 @@ export type BlobStreamInputDataSource = StreamInputDataSource & {
pathPattern?: string;
dateFormat?: string;
timeFormat?: string;
authenticationMode?: AuthenticationMode;
sourcePartitionCount?: number;
};

Expand Down Expand Up @@ -487,6 +506,12 @@ export type EventSerializationType = string;
// @public
export type EventsOutOfOrderPolicy = string;

// @public
export type FileReferenceInputDataSource = ReferenceInputDataSource & {
type: "File";
path?: string;
};

// @public
export interface FunctionBinding {
type: "Microsoft.MachineLearning/WebService" | "Microsoft.StreamAnalytics/JavascriptUdf";
Expand Down Expand Up @@ -519,12 +544,16 @@ export interface FunctionOutput {

// @public
export interface FunctionProperties {
binding?: FunctionBindingUnion;
readonly etag?: string;
type: "Scalar";
// (undocumented)
inputs?: FunctionInput[];
output?: FunctionOutput;
type: "Scalar" | "Aggregate";
}

// @public (undocumented)
export type FunctionPropertiesUnion = FunctionProperties | ScalarFunctionProperties;
export type FunctionPropertiesUnion = FunctionProperties | ScalarFunctionProperties | AggregateFunctionProperties;

// @public
export interface FunctionRetrieveDefaultDefinitionParameters {
Expand Down Expand Up @@ -623,10 +652,33 @@ export interface FunctionsUpdateOptionalParams extends coreClient.OperationOptio
// @public
export type FunctionsUpdateResponse = FunctionsUpdateHeaders & FunctionModel;

// @public
export type GatewayMessageBusOutputDataSource = OutputDataSource & {
type: "GatewayMessageBus";
topic?: string;
};

// @public
export type GatewayMessageBusOutputDataSourceProperties = GatewayMessageBusSourceProperties & {};

// @public
export interface GatewayMessageBusSourceProperties {
topic?: string;
}

// @public
export type GatewayMessageBusStreamInputDataSource = StreamInputDataSource & {
type: "GatewayMessageBus";
topic?: string;
};

// @public
export type GatewayMessageBusStreamInputDataSourceProperties = GatewayMessageBusSourceProperties & {};

// @public
export interface Identity {
principalId?: string;
tenantId?: string;
readonly principalId?: string;
readonly tenantId?: string;
type?: string;
}

Expand Down Expand Up @@ -976,11 +1028,11 @@ export type Output = SubResource & {

// @public
export interface OutputDataSource {
type: "Microsoft.Storage/Blob" | "Microsoft.Storage/Table" | "Microsoft.ServiceBus/EventHub" | "Microsoft.EventHub/EventHub" | "Microsoft.Sql/Server/Database" | "Microsoft.Sql/Server/DataWarehouse" | "Microsoft.Storage/DocumentDB" | "Microsoft.ServiceBus/Queue" | "Microsoft.ServiceBus/Topic" | "PowerBI" | "Microsoft.DataLake/Accounts";
type: "Microsoft.Storage/Blob" | "Microsoft.Storage/Table" | "Microsoft.ServiceBus/EventHub" | "Microsoft.EventHub/EventHub" | "Microsoft.Sql/Server/Database" | "Microsoft.Sql/Server/DataWarehouse" | "Microsoft.Storage/DocumentDB" | "Microsoft.AzureFunction" | "Microsoft.ServiceBus/Queue" | "Microsoft.ServiceBus/Topic" | "PowerBI" | "Microsoft.DataLake/Accounts" | "GatewayMessageBus";
}

// @public (undocumented)
export type OutputDataSourceUnion = OutputDataSource | BlobOutputDataSource | AzureTableOutputDataSource | EventHubOutputDataSource | EventHubV2OutputDataSource | AzureSqlDatabaseOutputDataSource | AzureSynapseOutputDataSource | DocumentDbOutputDataSource | ServiceBusQueueOutputDataSource | ServiceBusTopicOutputDataSource | PowerBIOutputDataSource | AzureDataLakeStoreOutputDataSource;
export type OutputDataSourceUnion = OutputDataSource | BlobOutputDataSource | AzureTableOutputDataSource | EventHubOutputDataSource | EventHubV2OutputDataSource | AzureSqlDatabaseOutputDataSource | AzureSynapseOutputDataSource | DocumentDbOutputDataSource | AzureFunctionOutputDataSource | ServiceBusQueueOutputDataSource | ServiceBusTopicOutputDataSource | PowerBIOutputDataSource | AzureDataLakeStoreOutputDataSource | GatewayMessageBusOutputDataSource;

// @public
export type OutputErrorPolicy = string;
Expand Down Expand Up @@ -1180,11 +1232,11 @@ export type ProxyResource = Resource & {};

// @public
export interface ReferenceInputDataSource {
type: "Microsoft.Storage/Blob" | "Microsoft.Sql/Server/Database";
type: "File" | "Microsoft.Storage/Blob" | "Microsoft.Sql/Server/Database";
}

// @public (undocumented)
export type ReferenceInputDataSourceUnion = ReferenceInputDataSource | BlobReferenceInputDataSource | AzureSqlReferenceInputDataSource;
export type ReferenceInputDataSourceUnion = ReferenceInputDataSource | FileReferenceInputDataSource | BlobReferenceInputDataSource | AzureSqlReferenceInputDataSource;

// @public
export type ReferenceInputProperties = InputProperties & {
Expand All @@ -1211,9 +1263,6 @@ export interface ResourceTestStatus {
// @public
export type ScalarFunctionProperties = FunctionProperties & {
type: "Scalar";
inputs?: FunctionInput[];
output?: FunctionOutput;
binding?: FunctionBindingUnion;
};

// @public
Expand Down Expand Up @@ -1489,11 +1538,11 @@ export type StreamingJobsUpdateResponse = StreamingJobsUpdateHeaders & Streaming

// @public
export interface StreamInputDataSource {
type: "Microsoft.Storage/Blob" | "Microsoft.ServiceBus/EventHub" | "Microsoft.EventHub/EventHub" | "Microsoft.Devices/IotHubs";
type: "Microsoft.Storage/Blob" | "Microsoft.ServiceBus/EventHub" | "Microsoft.EventHub/EventHub" | "Microsoft.Devices/IotHubs" | "GatewayMessageBus";
}

// @public (undocumented)
export type StreamInputDataSourceUnion = StreamInputDataSource | BlobStreamInputDataSource | EventHubStreamInputDataSource | EventHubV2StreamInputDataSource | IoTHubStreamInputDataSource;
export type StreamInputDataSourceUnion = StreamInputDataSource | BlobStreamInputDataSource | EventHubStreamInputDataSource | EventHubV2StreamInputDataSource | IoTHubStreamInputDataSource | GatewayMessageBusStreamInputDataSource;

// @public
export type StreamInputProperties = InputProperties & {
Expand Down
Loading