Skip to content

Commit 270f729

Browse files
langfuse-botlangfuse-bothassiebp
authored
feat(api): update API spec from langfuse/langfuse 07cae52 (#1617)
Co-authored-by: langfuse-bot <langfuse-bot@langfuse.com> Co-authored-by: Hassieb Pakzad <68423100+hassiebp@users.noreply.github.com>
1 parent cf2f7cd commit 270f729

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

langfuse/api/blob_storage_integrations/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def upsert_blob_storage_integration(
108108
type : BlobStorageIntegrationType
109109
110110
bucket_name : str
111-
Name of the storage bucket
111+
Name of the storage bucket. For AZURE_BLOB_STORAGE, must be a valid Azure container name (3-63 chars, lowercase letters, numbers, and hyphens only, must start and end with a letter or number, no consecutive hyphens).
112112
113113
region : str
114114
Storage region
@@ -367,7 +367,7 @@ async def upsert_blob_storage_integration(
367367
type : BlobStorageIntegrationType
368368
369369
bucket_name : str
370-
Name of the storage bucket
370+
Name of the storage bucket. For AZURE_BLOB_STORAGE, must be a valid Azure container name (3-63 chars, lowercase letters, numbers, and hyphens only, must start and end with a letter or number, no consecutive hyphens).
371371
372372
region : str
373373
Storage region

langfuse/api/blob_storage_integrations/raw_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ def upsert_blob_storage_integration(
165165
type : BlobStorageIntegrationType
166166
167167
bucket_name : str
168-
Name of the storage bucket
168+
Name of the storage bucket. For AZURE_BLOB_STORAGE, must be a valid Azure container name (3-63 chars, lowercase letters, numbers, and hyphens only, must start and end with a letter or number, no consecutive hyphens).
169169
170170
region : str
171171
Storage region
@@ -642,7 +642,7 @@ async def upsert_blob_storage_integration(
642642
type : BlobStorageIntegrationType
643643
644644
bucket_name : str
645-
Name of the storage bucket
645+
Name of the storage bucket. For AZURE_BLOB_STORAGE, must be a valid Azure container name (3-63 chars, lowercase letters, numbers, and hyphens only, must start and end with a letter or number, no consecutive hyphens).
646646
647647
region : str
648648
Storage region

langfuse/api/blob_storage_integrations/types/create_blob_storage_integration_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class CreateBlobStorageIntegrationRequest(UniversalBaseModel):
2626
pydantic.Field()
2727
)
2828
"""
29-
Name of the storage bucket
29+
Name of the storage bucket. For AZURE_BLOB_STORAGE, must be a valid Azure container name (3-63 chars, lowercase letters, numbers, and hyphens only, must start and end with a letter or number, no consecutive hyphens).
3030
"""
3131

3232
endpoint: typing.Optional[str] = pydantic.Field(default=None)

0 commit comments

Comments
 (0)