Skip to content

[AutoPR azure-appconfiguration] Updated typespecs for sdk gen testing #8414

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

Closed
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
7 changes: 3 additions & 4 deletions sdk/appconfiguration/azure-appconfiguration/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
recursive-include tests *.py
include *.md
include LICENSE
include azure/__init__.py
recursive-include samples *.py *.md
recursive-include doc *.rst
include azure/appconfiguration/py.typed
recursive-include tests *.py
recursive-include samples *.py *.md
include azure/__init__.py
6 changes: 6 additions & 0 deletions sdk/appconfiguration/azure-appconfiguration/_meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"commit": "e8136c11848f05e79597bab310539c506b4af9df",
"repository_url": "https://github.com/test-repo-billy/azure-rest-api-specs",
"typespec_src": "specification/appconfiguration/AppConfiguration",
"@azure-tools/typespec-python": "0.29.0"
}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__path__ = __import__("pkgutil").extend_path(__path__, __name__)
__path__ = __import__("pkgutil").extend_path(__path__, __name__) # type: ignore
Original file line number Diff line number Diff line change
@@ -1,50 +1,26 @@
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# Licensed under the MIT License. See License.txt in the project root for license information.
# Code generated by Microsoft (R) Python Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

from ._azure_appconfiguration_client import AzureAppConfigurationClient
from ._constants import FILTER_PERCENTAGE, FILTER_TARGETING, FILTER_TIME_WINDOW
from ._models import (
ConfigurationSetting,
FeatureFlagConfigurationSetting,
SecretReferenceConfigurationSetting,
ConfigurationSettingsFilter,
ConfigurationSnapshot,
ConfigurationSettingLabel,
)
from ._generated.models import (
SnapshotStatus,
LabelFields,
SnapshotFields,
ConfigurationSettingFields,
SnapshotComposition,
)
from ._client import AzureAppConfigurationClient
from ._version import VERSION
from ._azure_appconfiguration_error import ResourceReadOnlyError

__version__ = VERSION

try:
from ._patch import __all__ as _patch_all
from ._patch import * # pylint: disable=unused-wildcard-import
except ImportError:
_patch_all = []
from ._patch import patch_sdk as _patch_sdk

__all__ = [
"AzureAppConfigurationClient",
"ConfigurationSetting",
"ResourceReadOnlyError",
"FeatureFlagConfigurationSetting",
"SecretReferenceConfigurationSetting",
"ConfigurationSnapshot",
"SnapshotStatus",
"SnapshotFields",
"SnapshotComposition",
"LabelFields",
"ConfigurationSettingFields",
"ConfigurationSettingsFilter",
"ConfigurationSettingLabel",
"FILTER_PERCENTAGE",
"FILTER_TARGETING",
"FILTER_TIME_WINDOW",
]
__all__.extend([p for p in _patch_all if p not in __all__])

_patch_sdk()
Loading