Skip to content

Commit 1154089

Browse files
azure-sdkChenxiJiang333audunn
authored andcommitted
[AutoRelease] t2-netapp-2024-11-08-58381(can only be merged by SDK owner) (Azure#38411)
* code and test * Update CHANGELOG.md * Update CHANGELOG.md * assets * update-format --------- Co-authored-by: azure-sdk <PythonSdkPipelines> Co-authored-by: ChenxiJiang333 <[email protected]> Co-authored-by: Audunn Baldvinsson <[email protected]> Co-authored-by: ChenxiJiang333 <[email protected]>
1 parent dfe0768 commit 1154089

File tree

176 files changed

+4101
-800
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

176 files changed

+4101
-800
lines changed

sdk/netapp/azure-mgmt-netapp/CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,40 @@
11
# Release History
22

3+
## 13.4.0b1 (2024-11-18)
4+
5+
### Features Added
6+
7+
- Model `Backup` added property `is_large_volume`
8+
- Model `CapacityPool` added property `custom_throughput_mibps`
9+
- Model `CapacityPoolPatch` added property `custom_throughput_mibps`
10+
- Model `EncryptionIdentity` added property `federated_client_id`
11+
- Model `NetAppAccount` added property `nfs_v4_id_domain`
12+
- Model `NetAppAccount` added property `is_multi_ad_enabled`
13+
- Model `NetAppAccountPatch` added property `nfs_v4_id_domain`
14+
- Model `NetAppAccountPatch` added property `is_multi_ad_enabled`
15+
- Model `ReplicationObject` added property `destination_replications`
16+
- Enum `ServiceLevel` added member `FLEXIBLE`
17+
- Model `Volume` added property `accept_grow_capacity_pool_for_short_term_clone_split`
18+
- Model `Volume` added property `inherited_size_in_bytes`
19+
- Model `Volume` added property `language`
20+
- Model `VolumeGroupVolumeProperties` added property `accept_grow_capacity_pool_for_short_term_clone_split`
21+
- Model `VolumeGroupVolumeProperties` added property `inherited_size_in_bytes`
22+
- Model `VolumeGroupVolumeProperties` added property `language`
23+
- Added enum `AcceptGrowCapacityPoolForShortTermCloneSplit`
24+
- Added model `ChangeKeyVault`
25+
- Added model `DestinationReplication`
26+
- Added model `EncryptionTransitionRequest`
27+
- Added model `KeyVaultPrivateEndpoint`
28+
- Added model `ListQuotaReportResponse`
29+
- Added model `QuotaReport`
30+
- Added enum `ReplicationType`
31+
- Added enum `VolumeLanguage`
32+
- Operation group `AccountsOperations` added method `begin_change_key_vault`
33+
- Operation group `AccountsOperations` added method `begin_get_change_key_vault_information`
34+
- Operation group `AccountsOperations` added method `begin_transition_to_cmk`
35+
- Operation group `VolumesOperations` added method `begin_list_quota_report`
36+
- Operation group `VolumesOperations` added method `begin_split_clone_from_parent`
37+
338
## 13.3.0 (2024-10-21)
439

540
### Features Added
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"commit": "7a848fa439e779117793063aff964d7082a7f6f8",
2+
"commit": "c4dc3cd6256c8a7525079f2b98285cd5b1c8bee6",
33
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
44
"autorest": "3.10.2",
55
"use": [
66
"@autorest/[email protected]",
77
"@autorest/[email protected]"
88
],
9-
"autorest_command": "autorest specification/netapp/resource-manager/readme.md --generate-sample=True --generate-test=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/mnt/vss/_work/1/azure-sdk-for-python/sdk --use=@autorest/[email protected] --use=@autorest/[email protected] --version=3.10.2 --version-tolerant=False",
9+
"autorest_command": "autorest specification/netapp/resource-manager/readme.md --generate-sample=True --generate-test=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/mnt/vss/_work/1/azure-sdk-for-python/sdk --tag=package-preview-2024-07-01-preview --use=@autorest/[email protected] --use=@autorest/[email protected] --version=3.10.2 --version-tolerant=False",
1010
"readme": "specification/netapp/resource-manager/readme.md"
1111
}

sdk/netapp/azure-mgmt-netapp/assets.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"AssetsRepo": "Azure/azure-sdk-assets",
33
"AssetsRepoPrefixPath": "python",
44
"TagPrefix": "python/netapp/azure-mgmt-netapp",
5-
"Tag": "python/netapp/azure-mgmt-netapp_7f4c96bada"
5+
"Tag": "python/netapp/azure-mgmt-netapp_d458e8b242"
66
}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ class NetAppManagementClientConfiguration: # pylint: disable=too-many-instance-
2828
:type credential: ~azure.core.credentials.TokenCredential
2929
:param subscription_id: The ID of the target subscription. The value must be an UUID. Required.
3030
:type subscription_id: str
31-
:keyword api_version: Api Version. Default value is "2024-07-01". Note that overriding this
32-
default value may result in unsupported behavior.
31+
:keyword api_version: Api Version. Default value is "2024-07-01-preview". Note that overriding
32+
this default value may result in unsupported behavior.
3333
:paramtype api_version: str
3434
"""
3535

3636
def __init__(self, credential: "TokenCredential", subscription_id: str, **kwargs: Any) -> None:
37-
api_version: str = kwargs.pop("api_version", "2024-07-01")
37+
api_version: str = kwargs.pop("api_version", "2024-07-01-preview")
3838

3939
if credential is None:
4040
raise ValueError("Parameter 'credential' must not be None.")

sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/_net_app_management_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ class NetAppManagementClient: # pylint: disable=client-accepts-api-version-keyw
9292
:type subscription_id: str
9393
:param base_url: Service URL. Default value is "https://management.azure.com".
9494
:type base_url: str
95-
:keyword api_version: Api Version. Default value is "2024-07-01". Note that overriding this
96-
default value may result in unsupported behavior.
95+
:keyword api_version: Api Version. Default value is "2024-07-01-preview". Note that overriding
96+
this default value may result in unsupported behavior.
9797
:paramtype api_version: str
9898
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
9999
Retry-After header is present.

sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "13.3.0"
9+
VERSION = "13.4.0b1"

sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/_configuration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ class NetAppManagementClientConfiguration: # pylint: disable=too-many-instance-
2828
:type credential: ~azure.core.credentials_async.AsyncTokenCredential
2929
:param subscription_id: The ID of the target subscription. The value must be an UUID. Required.
3030
:type subscription_id: str
31-
:keyword api_version: Api Version. Default value is "2024-07-01". Note that overriding this
32-
default value may result in unsupported behavior.
31+
:keyword api_version: Api Version. Default value is "2024-07-01-preview". Note that overriding
32+
this default value may result in unsupported behavior.
3333
:paramtype api_version: str
3434
"""
3535

3636
def __init__(self, credential: "AsyncTokenCredential", subscription_id: str, **kwargs: Any) -> None:
37-
api_version: str = kwargs.pop("api_version", "2024-07-01")
37+
api_version: str = kwargs.pop("api_version", "2024-07-01-preview")
3838

3939
if credential is None:
4040
raise ValueError("Parameter 'credential' must not be None.")

sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/_net_app_management_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ class NetAppManagementClient: # pylint: disable=client-accepts-api-version-keyw
9292
:type subscription_id: str
9393
:param base_url: Service URL. Default value is "https://management.azure.com".
9494
:type base_url: str
95-
:keyword api_version: Api Version. Default value is "2024-07-01". Note that overriding this
96-
default value may result in unsupported behavior.
95+
:keyword api_version: Api Version. Default value is "2024-07-01-preview". Note that overriding
96+
this default value may result in unsupported behavior.
9797
:paramtype api_version: str
9898
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
9999
Retry-After header is present.

0 commit comments

Comments
 (0)