Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generating Python SDK for 2024-12-09Preview #40090

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 1.2.0b1 (Unreleased)
## 1.2.0b2 (Unreleased)

### Features Added

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class ConfidentialLedgerClient(ConfidentialLedgerClientOperationsMixin):
:param endpoint: The Confidential Ledger URL, for example
https://contoso.confidentialledger.azure.com. Required.
:type endpoint: str
:keyword api_version: Api Version. Default value is "2024-08-22-preview". Note that overriding
:keyword api_version: Api Version. Default value is "2024-12-09-preview". Note that overriding
this default value may result in unsupported behavior.
:paramtype api_version: str
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ class ConfidentialLedgerClientConfiguration: # pylint: disable=too-many-instanc
:param endpoint: The Confidential Ledger URL, for example
https://contoso.confidentialledger.azure.com. Required.
:type endpoint: str
:keyword api_version: Api Version. Default value is "2024-08-22-preview". Note that overriding
:keyword api_version: Api Version. Default value is "2024-12-09-preview". Note that overriding
this default value may result in unsupported behavior.
:paramtype api_version: str
"""

def __init__(self, endpoint: str, **kwargs: Any) -> None:
api_version: str = kwargs.pop("api_version", "2024-08-22-preview")
api_version: str = kwargs.pop("api_version", "2024-12-09-preview")

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

Large diffs are not rendered by default.

Loading
Loading