Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
8 changes: 8 additions & 0 deletions sdk/mongocluster/azure-mgmt-mongocluster/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Release History

## 1.2.0b1 (2026-05-01)

### Features Added

- Model `MongoClusterProperties` added property `network_bypass_mode`
- Model `MongoClusterUpdateProperties` added property `network_bypass_mode`
- Added enum `NetworkBypassMode`

## 1.1.0 (2025-10-15)

### Features Added
Expand Down
4 changes: 2 additions & 2 deletions sdk/mongocluster/azure-mgmt-mongocluster/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Microsoft Azure SDK for Python

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

## _Disclaimer_
Expand All @@ -12,7 +12,7 @@ _Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For

### Prerequisites

- Python 3.9+ is required to use this package.
- Python 3.10+ is required to use this package.
- [Azure subscription](https://azure.microsoft.com/free/)
Comment thread
ChenxiJiang333 marked this conversation as resolved.

### Install the package
Expand Down
9 changes: 6 additions & 3 deletions sdk/mongocluster/azure-mgmt-mongocluster/_metadata.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"apiVersion": "2025-09-01",
"commit": "c5601446fc65494f18157aecbcc79cebcfbab1fb",
"apiVersion": "2026-02-01-preview",
"apiVersions": {
"Microsoft.DocumentDB": "2026-02-01-preview"
},
"commit": "b0a55df5d0486a2faa05a3c93b2b90da6cce081b",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"typespec_src": "specification/mongocluster/resource-manager/Microsoft.DocumentDB/MongoCluster",
"emitterVersion": "0.52.1"
"emitterVersion": "0.61.3"
}
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@
"azure.mgmt.mongocluster.models.ReplicationState": "Microsoft.DocumentDB.ReplicationState",
"azure.mgmt.mongocluster.models.AuthenticationMode": "Microsoft.DocumentDB.AuthenticationMode",
"azure.mgmt.mongocluster.models.KeyEncryptionKeyIdentityType": "Microsoft.DocumentDB.KeyEncryptionKeyIdentityType",
"azure.mgmt.mongocluster.models.NetworkBypassMode": "Microsoft.DocumentDB.NetworkBypassMode",
"azure.mgmt.mongocluster.models.ManagedServiceIdentityType": "Azure.ResourceManager.CommonTypes.ManagedServiceIdentityType",
"azure.mgmt.mongocluster.models.CheckNameAvailabilityReason": "Azure.ResourceManager.CommonTypes.CheckNameAvailabilityReason",
"azure.mgmt.mongocluster.models.PromoteOption": "Microsoft.DocumentDB.PromoteOption",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,9 @@ class MongoClusterMgmtClient: # pylint: disable=too-many-instance-attributes
:keyword cloud_setting: The cloud setting for which to get the ARM endpoint. Default value is
None.
:paramtype cloud_setting: ~azure.core.AzureClouds
:keyword api_version: The API version to use for this operation. Default value is "2025-09-01".
Note that overriding this default value may result in unsupported behavior.
:keyword api_version: The API version to use for this operation. Known values are
"2026-02-01-preview". Default value is "2026-02-01-preview". Note that overriding this default
value may result in unsupported behavior.
Comment thread
ChenxiJiang333 marked this conversation as resolved.
:paramtype api_version: str
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
Retry-After header is present.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@ class MongoClusterMgmtClientConfiguration: # pylint: disable=too-many-instance-
:param cloud_setting: The cloud setting for which to get the ARM endpoint. Default value is
None.
:type cloud_setting: ~azure.core.AzureClouds
:keyword api_version: The API version to use for this operation. Default value is "2025-09-01".
Note that overriding this default value may result in unsupported behavior.
:keyword api_version: The API version to use for this operation. Known values are
"2026-02-01-preview". Default value is "2026-02-01-preview". Note that overriding this default
value may result in unsupported behavior.
:paramtype api_version: str
"""

Expand All @@ -46,7 +47,7 @@ def __init__(
cloud_setting: Optional["AzureClouds"] = None,
**kwargs: Any
) -> None:
api_version: str = kwargs.pop("api_version", "2025-09-01")
api_version: str = kwargs.pop("api_version", "2026-02-01-preview")

if credential is None:
raise ValueError("Parameter 'credential' must not be None.")
Expand Down
Loading