Metadata-Version: 2.4
Name: azure-mgmt-streamanalytics
Version: 2.0.0b2
Summary: Microsoft Azure Stream Analytics Management Client Library for Python
Home-page: https://github.com/Azure/azure-sdk-for-python
Author: Microsoft Corporation
Author-email: azpysdkhelp@microsoft.com
License: MIT License
Keywords: azure,azure sdk
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: isodate<1.0.0,>=0.6.1
Requires-Dist: azure-common>=1.1
Requires-Dist: azure-mgmt-core<2.0.0,>=1.3.2
Requires-Dist: typing-extensions>=4.3.0; python_version < "3.8.0"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Microsoft Azure SDK for Python

This is the Microsoft Azure Stream Analytics Management Client Library.
This package has been tested with Python 3.7+.
For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).

## _Disclaimer_

_Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For more information and questions, please refer to https://github.com/Azure/azure-sdk-for-python/issues/20691_

## Getting started

### Prerequisites

- Python 3.7+ is required to use this package.
- [Azure subscription](https://azure.microsoft.com/free/)

### Install the package

```bash
pip install azure-mgmt-streamanalytics
pip install azure-identity
```

### Authentication

By default, [Azure Active Directory](https://aka.ms/awps/aad) token authentication depends on correct configure of following environment variables.

- `AZURE_CLIENT_ID` for Azure client ID.
- `AZURE_TENANT_ID` for Azure tenant ID.
- `AZURE_CLIENT_SECRET` for Azure client secret.

In addition, Azure subscription ID can be configured via environment variable `AZURE_SUBSCRIPTION_ID`.

With above configuration, client can be authenticated by following code:

```python
from azure.identity import DefaultAzureCredential
from azure.mgmt.streamanalytics import StreamAnalyticsManagementClient
import os

sub_id = os.getenv("AZURE_SUBSCRIPTION_ID")
client = StreamAnalyticsManagementClient(credential=DefaultAzureCredential(), subscription_id=sub_id)
```

## Examples

Code samples for this package can be found at:
- [Search Stream Analytics Management](https://docs.microsoft.com/samples/browse/?languages=python&term=Getting%20started%20-%20Managing&terms=Getting%20started%20-%20Managing) on docs.microsoft.com
- [Azure Python Mgmt SDK Samples Repo](https://aka.ms/azsdk/python/mgmt/samples)


## Troubleshooting

## Next steps

## Provide Feedback

If you encounter any bugs or have suggestions, please file an issue in the
[Issues](https://github.com/Azure/azure-sdk-for-python/issues)
section of the project. 


# Release History

## 2.0.0b2 (2024-01-22)

### Features Added

  - Added model AzureDataExplorerOutputDataSource
  - Added model DeltaSerialization

## 2.0.0b1 (2022-11-11)

### Features Added

  - Added operation SubscriptionsOperations.begin_sample_input
  - Added operation SubscriptionsOperations.begin_test_input
  - Added operation SubscriptionsOperations.begin_test_output
  - Added operation SubscriptionsOperations.begin_test_query
  - Added operation SubscriptionsOperations.compile_query
  - Added operation group SkuOperations
  - Model AzureSqlReferenceInputDataSource has a new parameter authentication_mode
  - Model AzureSynapseDataSourceProperties has a new parameter authentication_mode
  - Model AzureSynapseOutputDataSource has a new parameter authentication_mode
  - Model AzureSynapseOutputDataSourceProperties has a new parameter authentication_mode
  - Model BlobDataSourceProperties has a new parameter authentication_mode
  - Model BlobOutputDataSource has a new parameter blob_path_prefix
  - Model BlobOutputDataSource has a new parameter blob_write_mode
  - Model BlobOutputDataSourceProperties has a new parameter blob_path_prefix
  - Model BlobOutputDataSourceProperties has a new parameter blob_write_mode
  - Model BlobReferenceInputDataSource has a new parameter authentication_mode
  - Model BlobReferenceInputDataSource has a new parameter blob_name
  - Model BlobReferenceInputDataSource has a new parameter delta_path_pattern
  - Model BlobReferenceInputDataSource has a new parameter delta_snapshot_refresh_rate
  - Model BlobReferenceInputDataSource has a new parameter full_snapshot_refresh_rate
  - Model BlobReferenceInputDataSource has a new parameter source_partition_count
  - Model BlobReferenceInputDataSourceProperties has a new parameter authentication_mode
  - Model BlobReferenceInputDataSourceProperties has a new parameter blob_name
  - Model BlobReferenceInputDataSourceProperties has a new parameter delta_path_pattern
  - Model BlobReferenceInputDataSourceProperties has a new parameter delta_snapshot_refresh_rate
  - Model BlobReferenceInputDataSourceProperties has a new parameter full_snapshot_refresh_rate
  - Model BlobReferenceInputDataSourceProperties has a new parameter source_partition_count
  - Model BlobStreamInputDataSource has a new parameter authentication_mode
  - Model BlobStreamInputDataSourceProperties has a new parameter authentication_mode
  - Model Cluster has a new parameter properties
  - Model DocumentDbOutputDataSource has a new parameter authentication_mode
  - Model EventHubDataSourceProperties has a new parameter partition_count
  - Model EventHubOutputDataSource has a new parameter partition_count
  - Model EventHubOutputDataSourceProperties has a new parameter partition_count
  - Model EventHubStreamInputDataSource has a new parameter partition_count
  - Model EventHubStreamInputDataSource has a new parameter prefetch_count
  - Model EventHubStreamInputDataSourceProperties has a new parameter partition_count
  - Model EventHubStreamInputDataSourceProperties has a new parameter prefetch_count
  - Model EventHubV2OutputDataSource has a new parameter partition_count
  - Model EventHubV2StreamInputDataSource has a new parameter partition_count
  - Model EventHubV2StreamInputDataSource has a new parameter prefetch_count
  - Model FunctionProperties has a new parameter binding
  - Model FunctionProperties has a new parameter inputs
  - Model FunctionProperties has a new parameter output
  - Model Identity has a new parameter user_assigned_identities
  - Model InputProperties has a new parameter watermark_settings
  - Model Output has a new parameter last_output_event_timestamps
  - Model Output has a new parameter watermark_settings
  - Model PrivateEndpoint has a new parameter properties
  - Model ReferenceInputProperties has a new parameter watermark_settings
  - Model Sku has a new parameter capacity
  - Model StorageAccount has a new parameter authentication_mode
  - Model StreamInputProperties has a new parameter watermark_settings
  - Model StreamingJob has a new parameter externals
  - Model StreamingJob has a new parameter sku_properties_sku

### Breaking Changes

  - Model AzureSqlReferenceInputDataSource no longer has parameter table
  - Model Cluster no longer has parameter capacity_allocated
  - Model Cluster no longer has parameter capacity_assigned
  - Model Cluster no longer has parameter cluster_id
  - Model Cluster no longer has parameter created_date
  - Model Cluster no longer has parameter provisioning_state
  - Model PrivateEndpoint no longer has parameter created_date
  - Model PrivateEndpoint no longer has parameter manual_private_link_service_connections

## 1.0.0 (2022-01-06)

**Features**

  - Added operation StreamingJobsOperations.begin_scale
  - Model AzureSqlReferenceInputDataSource has a new parameter database
  - Model AzureSqlReferenceInputDataSource has a new parameter delta_snapshot_query
  - Model AzureSqlReferenceInputDataSource has a new parameter full_snapshot_query
  - Model AzureSqlReferenceInputDataSource has a new parameter password
  - Model AzureSqlReferenceInputDataSource has a new parameter refresh_rate
  - Model AzureSqlReferenceInputDataSource has a new parameter refresh_type
  - Model AzureSqlReferenceInputDataSource has a new parameter server
  - Model AzureSqlReferenceInputDataSource has a new parameter table
  - Model AzureSqlReferenceInputDataSource has a new parameter user
  - Model Cluster has a new parameter capacity_allocated
  - Model Cluster has a new parameter capacity_assigned
  - Model Cluster has a new parameter cluster_id
  - Model Cluster has a new parameter created_date
  - Model Cluster has a new parameter provisioning_state
  - Model Operation has a new parameter is_data_action
  - Model PrivateEndpoint has a new parameter created_date
  - Model PrivateEndpoint has a new parameter manual_private_link_service_connections
  - Model Transformation has a new parameter valid_streaming_units

**Breaking changes**

  - Model AzureSqlReferenceInputDataSource no longer has parameter properties
  - Model Cluster no longer has parameter properties
  - Model FunctionProperties no longer has parameter binding
  - Model FunctionProperties no longer has parameter inputs
  - Model FunctionProperties no longer has parameter output
  - Model PrivateEndpoint no longer has parameter properties
  - Model StreamingJob no longer has parameter externals

## 1.0.0rc1 (2020-09-18)

  - Initial Release
