📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-07-06 16:02:57 +00:00
parent 32b074b266
commit 3b9ece8c79
299 changed files with 1063 additions and 858 deletions
@@ -247,6 +247,7 @@ if hasattr(keys.properties, 'properties'):
### Create Connection Setting
```python
import os
from azure.mgmt.botservice.models import (
ConnectionSetting,
ConnectionSettingProperties
@@ -260,7 +261,7 @@ connection = client.bot_connection.create(
location="global",
properties=ConnectionSettingProperties(
client_id="<oauth-client-id>",
client_secret="<oauth-client-secret>",
client_secret=os.environ["BOT_OAUTH_CLIENT_SECRET"],
scopes="User.Read",
service_provider_id="<service-provider-id>"
)