Skip to content

Commit 2fe2f5e

Browse files
azclibotSDKAutomsyyc
authored andcommitted
[AutoRelease] t2-streamanalytics-2022-01-06-51238 (Azure#22356)
* CodeGen from PR 17260 in Azure/azure-rest-api-specs Update readme.python.md (Azure#17260) * version,CHANGELOG * Update CHANGELOG.md * Update _version.py Co-authored-by: SDKAuto <[email protected]> Co-authored-by: PythonSdkPipelines <PythonSdkPipelines> Co-authored-by: Yuchao Yan <[email protected]>
1 parent d7a707a commit 2fe2f5e

39 files changed

+7743
-9833
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
# Release History
22

3+
## 1.0.0 (2022-01-06)
4+
5+
**Features**
6+
7+
- Added operation StreamingJobsOperations.begin_scale
8+
- Model AzureSqlReferenceInputDataSource has a new parameter database
9+
- Model AzureSqlReferenceInputDataSource has a new parameter delta_snapshot_query
10+
- Model AzureSqlReferenceInputDataSource has a new parameter full_snapshot_query
11+
- Model AzureSqlReferenceInputDataSource has a new parameter password
12+
- Model AzureSqlReferenceInputDataSource has a new parameter refresh_rate
13+
- Model AzureSqlReferenceInputDataSource has a new parameter refresh_type
14+
- Model AzureSqlReferenceInputDataSource has a new parameter server
15+
- Model AzureSqlReferenceInputDataSource has a new parameter table
16+
- Model AzureSqlReferenceInputDataSource has a new parameter user
17+
- Model Cluster has a new parameter capacity_allocated
18+
- Model Cluster has a new parameter capacity_assigned
19+
- Model Cluster has a new parameter cluster_id
20+
- Model Cluster has a new parameter created_date
21+
- Model Cluster has a new parameter provisioning_state
22+
- Model Operation has a new parameter is_data_action
23+
- Model PrivateEndpoint has a new parameter created_date
24+
- Model PrivateEndpoint has a new parameter manual_private_link_service_connections
25+
- Model Transformation has a new parameter valid_streaming_units
26+
27+
**Breaking changes**
28+
29+
- Model AzureSqlReferenceInputDataSource no longer has parameter properties
30+
- Model Cluster no longer has parameter properties
31+
- Model FunctionProperties no longer has parameter binding
32+
- Model FunctionProperties no longer has parameter inputs
33+
- Model FunctionProperties no longer has parameter output
34+
- Model PrivateEndpoint no longer has parameter properties
35+
- Model StreamingJob no longer has parameter externals
36+
337
## 1.0.0rc1 (2020-09-18)
438

539
- Initial Release
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"autorest": "3.7.2",
3+
"use": [
4+
"@autorest/[email protected]",
5+
"@autorest/[email protected]"
6+
],
7+
"commit": "0ca8399b0e4fb4ae4608ffd0a6c056213664dacd",
8+
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
9+
"autorest_command": "autorest specification/streamanalytics/resource-manager/readme.md --multiapi --python --python-mode=update --python-sdks-folder=/home/vsts/work/1/s/azure-sdk-for-python/sdk --python3-only --track2 --use=@autorest/[email protected] --use=@autorest/[email protected] --version=3.7.2",
10+
"readme": "specification/streamanalytics/resource-manager/readme.md"
11+
}

sdk/streamanalytics/azure-mgmt-streamanalytics/azure/mgmt/streamanalytics/__init__.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
__version__ = VERSION
1313
__all__ = ['StreamAnalyticsManagementClient']
1414

15-
try:
16-
from ._patch import patch_sdk # type: ignore
17-
patch_sdk()
18-
except ImportError:
19-
pass
15+
# `._patch.py` is used for handwritten extensions to the generated code
16+
# Example: https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/customize_code/how-to-patch-sdk-code.md
17+
from ._patch import patch_sdk
18+
patch_sdk()

sdk/streamanalytics/azure-mgmt-streamanalytics/azure/mgmt/streamanalytics/_configuration.py

+9-11
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,16 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
from typing import TYPE_CHECKING
9+
from typing import Any, TYPE_CHECKING
1010

1111
from azure.core.configuration import Configuration
1212
from azure.core.pipeline import policies
13-
from azure.mgmt.core.policies import ARMHttpLoggingPolicy
13+
from azure.mgmt.core.policies import ARMChallengeAuthenticationPolicy, ARMHttpLoggingPolicy
1414

1515
from ._version import VERSION
1616

1717
if TYPE_CHECKING:
1818
# pylint: disable=unused-import,ungrouped-imports
19-
from typing import Any
20-
2119
from azure.core.credentials import TokenCredential
2220

2321

@@ -35,19 +33,19 @@ class StreamAnalyticsManagementClientConfiguration(Configuration):
3533

3634
def __init__(
3735
self,
38-
credential, # type: "TokenCredential"
39-
subscription_id, # type: str
40-
**kwargs # type: Any
41-
):
42-
# type: (...) -> None
36+
credential: "TokenCredential",
37+
subscription_id: str,
38+
**kwargs: Any
39+
) -> None:
40+
super(StreamAnalyticsManagementClientConfiguration, self).__init__(**kwargs)
4341
if credential is None:
4442
raise ValueError("Parameter 'credential' must not be None.")
4543
if subscription_id is None:
4644
raise ValueError("Parameter 'subscription_id' must not be None.")
47-
super(StreamAnalyticsManagementClientConfiguration, self).__init__(**kwargs)
4845

4946
self.credential = credential
5047
self.subscription_id = subscription_id
48+
self.api_version = "2020-03-01"
5149
self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default'])
5250
kwargs.setdefault('sdk_moniker', 'mgmt-streamanalytics/{}'.format(VERSION))
5351
self._configure(**kwargs)
@@ -67,4 +65,4 @@ def _configure(
6765
self.redirect_policy = kwargs.get('redirect_policy') or policies.RedirectPolicy(**kwargs)
6866
self.authentication_policy = kwargs.get('authentication_policy')
6967
if self.credential and not self.authentication_policy:
70-
self.authentication_policy = policies.BearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs)
68+
self.authentication_policy = ARMChallengeAuthenticationPolicy(self.credential, *self.credential_scopes, **kwargs)
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,110 @@
11
{
2-
"chosen_version": "",
3-
"total_api_version_list": ["2017-04-01-preview", "2020-03-01-preview"],
2+
"chosen_version": "2020-03-01",
3+
"total_api_version_list": ["2020-03-01"],
44
"client": {
55
"name": "StreamAnalyticsManagementClient",
66
"filename": "_stream_analytics_management_client",
77
"description": "Stream Analytics Client.",
8-
"base_url": "\u0027https://management.azure.com\u0027",
9-
"custom_base_url": null,
8+
"host_value": "\"https://management.azure.com\"",
9+
"parameterized_host_template": null,
1010
"azure_arm": true,
11-
"has_lro_operations": true
11+
"has_lro_operations": true,
12+
"client_side_validation": false,
13+
"sync_imports": "{\"typing\": {\"azurecore\": {\"azure.core.credentials\": [\"TokenCredential\"]}}, \"regular\": {\"azurecore\": {\"azure.profiles\": [\"KnownProfiles\", \"ProfileDefinition\"], \"azure.profiles.multiapiclient\": [\"MultiApiClientMixin\"], \"msrest\": [\"Deserializer\", \"Serializer\"], \"azure.mgmt.core\": [\"ARMPipelineClient\"]}, \"local\": {\"._configuration\": [\"StreamAnalyticsManagementClientConfiguration\"]}}, \"conditional\": {\"stdlib\": {\"typing\": [\"Any\", \"Optional\"]}}}",
14+
"async_imports": "{\"typing\": {\"azurecore\": {\"azure.core.credentials_async\": [\"AsyncTokenCredential\"], \"azure.core.credentials\": [\"TokenCredential\"]}}, \"regular\": {\"azurecore\": {\"azure.profiles\": [\"KnownProfiles\", \"ProfileDefinition\"], \"azure.profiles.multiapiclient\": [\"MultiApiClientMixin\"], \"msrest\": [\"Deserializer\", \"Serializer\"], \"azure.mgmt.core\": [\"AsyncARMPipelineClient\"]}, \"local\": {\"._configuration\": [\"StreamAnalyticsManagementClientConfiguration\"]}}, \"conditional\": {\"stdlib\": {\"typing\": [\"Any\", \"Optional\"]}}}"
1215
},
1316
"global_parameters": {
14-
"sync_method": {
17+
"sync": {
1518
"credential": {
16-
"method_signature": "credential, # type: \"TokenCredential\"",
19+
"signature": "credential, # type: \"TokenCredential\"",
1720
"description": "Credential needed for the client to connect to Azure.",
1821
"docstring_type": "~azure.core.credentials.TokenCredential",
1922
"required": true
2023
},
2124
"subscription_id": {
22-
"method_signature": "subscription_id, # type: str",
25+
"signature": "subscription_id, # type: str",
2326
"description": "The ID of the target subscription.",
2427
"docstring_type": "str",
2528
"required": true
2629
}
2730
},
28-
"async_method": {
31+
"async": {
2932
"credential": {
30-
"method_signature": "credential, # type: \"AsyncTokenCredential\"",
33+
"signature": "credential: \"AsyncTokenCredential\",",
3134
"description": "Credential needed for the client to connect to Azure.",
3235
"docstring_type": "~azure.core.credentials_async.AsyncTokenCredential",
3336
"required": true
3437
},
3538
"subscription_id": {
36-
"method_signature": "subscription_id, # type: str",
39+
"signature": "subscription_id: str,",
3740
"description": "The ID of the target subscription.",
3841
"docstring_type": "str",
3942
"required": true
4043
}
4144
},
4245
"constant": {
4346
},
44-
"call": "credential, subscription_id"
47+
"call": "credential, subscription_id",
48+
"service_client_specific": {
49+
"sync": {
50+
"api_version": {
51+
"signature": "api_version=None, # type: Optional[str]",
52+
"description": "API version to use if no profile is provided, or if missing in profile.",
53+
"docstring_type": "str",
54+
"required": false
55+
},
56+
"base_url": {
57+
"signature": "base_url=\"https://management.azure.com\", # type: str",
58+
"description": "Service URL",
59+
"docstring_type": "str",
60+
"required": false
61+
},
62+
"profile": {
63+
"signature": "profile=KnownProfiles.default, # type: KnownProfiles",
64+
"description": "A profile definition, from KnownProfiles to dict.",
65+
"docstring_type": "azure.profiles.KnownProfiles",
66+
"required": false
67+
}
68+
},
69+
"async": {
70+
"api_version": {
71+
"signature": "api_version: Optional[str] = None,",
72+
"description": "API version to use if no profile is provided, or if missing in profile.",
73+
"docstring_type": "str",
74+
"required": false
75+
},
76+
"base_url": {
77+
"signature": "base_url: str = \"https://management.azure.com\",",
78+
"description": "Service URL",
79+
"docstring_type": "str",
80+
"required": false
81+
},
82+
"profile": {
83+
"signature": "profile: KnownProfiles = KnownProfiles.default,",
84+
"description": "A profile definition, from KnownProfiles to dict.",
85+
"docstring_type": "azure.profiles.KnownProfiles",
86+
"required": false
87+
}
88+
}
89+
}
4590
},
4691
"config": {
4792
"credential": true,
4893
"credential_scopes": ["https://management.azure.com/.default"],
49-
"credential_default_policy_type": "BearerTokenCredentialPolicy",
50-
"credential_default_policy_type_has_async_version": true,
51-
"credential_key_header_name": null
94+
"credential_call_sync": "ARMChallengeAuthenticationPolicy(self.credential, *self.credential_scopes, **kwargs)",
95+
"credential_call_async": "AsyncARMChallengeAuthenticationPolicy(self.credential, *self.credential_scopes, **kwargs)",
96+
"sync_imports": "{\"regular\": {\"azurecore\": {\"azure.core.configuration\": [\"Configuration\"], \"azure.core.pipeline\": [\"policies\"], \"azure.mgmt.core.policies\": [\"ARMChallengeAuthenticationPolicy\", \"ARMHttpLoggingPolicy\"]}, \"local\": {\"._version\": [\"VERSION\"]}}, \"conditional\": {\"stdlib\": {\"typing\": [\"Any\"]}}, \"typing\": {\"azurecore\": {\"azure.core.credentials\": [\"TokenCredential\"]}}}",
97+
"async_imports": "{\"regular\": {\"azurecore\": {\"azure.core.configuration\": [\"Configuration\"], \"azure.core.pipeline\": [\"policies\"], \"azure.mgmt.core.policies\": [\"ARMHttpLoggingPolicy\", \"AsyncARMChallengeAuthenticationPolicy\"]}, \"local\": {\".._version\": [\"VERSION\"]}}, \"conditional\": {\"stdlib\": {\"typing\": [\"Any\"]}}, \"typing\": {\"azurecore\": {\"azure.core.credentials_async\": [\"AsyncTokenCredential\"]}}}"
5298
},
5399
"operation_groups": {
54-
"functions": "FunctionsOperations",
100+
"operations": "Operations",
101+
"streaming_jobs": "StreamingJobsOperations",
55102
"inputs": "InputsOperations",
56103
"outputs": "OutputsOperations",
57-
"streaming_jobs": "StreamingJobsOperations",
58-
"subscriptions": "SubscriptionsOperations",
59104
"transformations": "TransformationsOperations",
60-
"operations": "Operations",
105+
"functions": "FunctionsOperations",
106+
"subscriptions": "SubscriptionsOperations",
61107
"clusters": "ClustersOperations",
62108
"private_endpoints": "PrivateEndpointsOperations"
63-
},
64-
"operation_mixins": {
65-
},
66-
"sync_imports": "None",
67-
"async_imports": "None"
109+
}
68110
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# coding=utf-8
2+
# --------------------------------------------------------------------------
3+
#
4+
# Copyright (c) Microsoft Corporation. All rights reserved.
5+
#
6+
# The MIT License (MIT)
7+
#
8+
# Permission is hereby granted, free of charge, to any person obtaining a copy
9+
# of this software and associated documentation files (the ""Software""), to
10+
# deal in the Software without restriction, including without limitation the
11+
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
12+
# sell copies of the Software, and to permit persons to whom the Software is
13+
# furnished to do so, subject to the following conditions:
14+
#
15+
# The above copyright notice and this permission notice shall be included in
16+
# all copies or substantial portions of the Software.
17+
#
18+
# THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23+
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
24+
# IN THE SOFTWARE.
25+
#
26+
# --------------------------------------------------------------------------
27+
28+
# This file is used for handwritten extensions to the generated code. Example:
29+
# https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/customize_code/how-to-patch-sdk-code.md
30+
def patch_sdk():
31+
pass

0 commit comments

Comments
 (0)