|
52 | 52 | class AzureAppConfigurationClient: |
53 | 53 | """Represents a client that calls restful API of Azure App Configuration service. |
54 | 54 |
|
55 | | - :param str base_url: Base url of the service. |
56 | | - :param credential: An object which can provide secrets for the app configuration service |
57 | | - :type credential: ~azure.core.credentials_async.AsyncTokenCredential |
58 | | - :keyword api_version: Api Version. Default value is "2023-11-01". Note that overriding this default |
59 | | - value may result in unsupported behavior. |
60 | | - :paramtype api_version: str |
| 55 | + :param str base_url: Base url of the service. |
| 56 | + :param credential: An object which can provide secrets for the app configuration service |
| 57 | + :type credential: ~azure.core.credentials_async.AsyncTokenCredential |
| 58 | + :keyword api_version: Api Version. Default value is "2023-11-01". Note that overriding this default |
| 59 | + value may result in unsupported behavior. |
| 60 | + :paramtype api_version: str |
61 | 61 |
|
62 | 62 | This is the async version of :class:`~azure.appconfiguration.AzureAppConfigurationClient` |
63 | 63 |
|
64 | 64 | """ |
65 | 65 |
|
66 | 66 | # pylint:disable=protected-access |
67 | | - |
68 | 67 | def __init__(self, base_url: str, credential: AsyncTokenCredential, **kwargs: Any) -> None: |
69 | 68 | try: |
70 | 69 | if not base_url.lower().startswith("http"): |
@@ -642,7 +641,7 @@ def list_labels( |
642 | 641 | Available fields see :class:`~azure.appconfiguration.LabelFields`. |
643 | 642 | :paramtype fields: list[str] or list[~azure.appconfiguration.LabelFields] or None |
644 | 643 | :return: An async iterator of labels. |
645 | | - :rtype: ~azure.core.paging.AsyncItemPaged[~azure.appconfiguration.ConfigurationSettingLabel] |
| 644 | + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.appconfiguration.ConfigurationSettingLabel] |
646 | 645 | :raises: :class:`~azure.core.exceptions.HttpResponseError` |
647 | 646 | """ |
648 | 647 | if isinstance(accept_datetime, datetime): |
|
0 commit comments