Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Updates
  • Loading branch information
dargilco committed May 8, 2025
commit c9202102d3e33049b3319db2170e18c2f706a807
2 changes: 1 addition & 1 deletion specification/ai/Azure.AI.Projects/common/models.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ model PendingUploadRequest {
@doc("If PendingUploadId is not provided, a random GUID will be used.")
pendingUploadId?: string;

@doc("Name of Azure blob storage connection to use for generating temporary SAS token")
@doc("Azure Storage Account connection name to use for generating temporary SAS token")
connectionName?: string;

@doc("BlobReference is the only supported type.")
Expand Down
5 changes: 4 additions & 1 deletion specification/ai/Azure.AI.Projects/datasets/models.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ model DatasetVersion {
type: DatasetType;

@doc("Indicates if the dataset holds a reference to the storage, or the dataset manages storage itself. If true, the underlying data will not be deleted when the dataset version is deleted")
isReference?: boolean;
isReference: boolean;

@doc("The Azure Storage Account connection name. Required if isReference is true.")
connectionName?: string;

...AssetBase;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2213,6 +2213,10 @@
"type": "boolean",
"description": "Indicates if the dataset holds a reference to the storage, or the dataset manages storage itself. If true, the underlying data will not be deleted when the dataset version is deleted"
},
"connectionName": {
"type": "string",
"description": "The Azure Storage Account connection name. Required if isReference is true."
},
"id": {
"type": "string",
"description": "Asset ID, a unique identifier for the asset",
Expand Down Expand Up @@ -2252,6 +2256,7 @@
"required": [
"dataUri",
"type",
"isReference",
"name",
"version"
]
Expand All @@ -2268,6 +2273,10 @@
"type": "boolean",
"description": "Indicates if the dataset holds a reference to the storage, or the dataset manages storage itself. If true, the underlying data will not be deleted when the dataset version is deleted"
},
"connectionName": {
"type": "string",
"description": "The Azure Storage Account connection name. Required if isReference is true."
},
"description": {
"type": "string",
"description": "The asset description text.",
Expand Down Expand Up @@ -2940,7 +2949,7 @@
},
"connectionName": {
"type": "string",
"description": "Name of Azure blob storage connection to use for generating temporary SAS token"
"description": "Azure Storage Account connection name to use for generating temporary SAS token"
},
"pendingUploadType": {
"type": "string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1530,6 +1530,10 @@
"type": "boolean",
"description": "Indicates if the dataset holds a reference to the storage, or the dataset manages storage itself. If true, the underlying data will not be deleted when the dataset version is deleted"
},
"connectionName": {
"type": "string",
"description": "The Azure Storage Account connection name. Required if isReference is true."
},
"id": {
"type": "string",
"description": "Asset ID, a unique identifier for the asset",
Expand Down Expand Up @@ -1569,6 +1573,7 @@
"required": [
"dataUri",
"type",
"isReference",
"name",
"version"
]
Expand All @@ -1585,6 +1590,10 @@
"type": "boolean",
"description": "Indicates if the dataset holds a reference to the storage, or the dataset manages storage itself. If true, the underlying data will not be deleted when the dataset version is deleted"
},
"connectionName": {
"type": "string",
"description": "The Azure Storage Account connection name. Required if isReference is true."
},
"description": {
"type": "string",
"description": "The asset description text.",
Expand Down Expand Up @@ -2100,7 +2109,7 @@
},
"connectionName": {
"type": "string",
"description": "Name of Azure blob storage connection to use for generating temporary SAS token"
"description": "Azure Storage Account connection name to use for generating temporary SAS token"
},
"pendingUploadType": {
"type": "string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1530,6 +1530,10 @@
"type": "boolean",
"description": "Indicates if the dataset holds a reference to the storage, or the dataset manages storage itself. If true, the underlying data will not be deleted when the dataset version is deleted"
},
"connectionName": {
"type": "string",
"description": "The Azure Storage Account connection name. Required if isReference is true."
},
"id": {
"type": "string",
"description": "Asset ID, a unique identifier for the asset",
Expand Down Expand Up @@ -1569,6 +1573,7 @@
"required": [
"dataUri",
"type",
"isReference",
"name",
"version"
]
Expand All @@ -1585,6 +1590,10 @@
"type": "boolean",
"description": "Indicates if the dataset holds a reference to the storage, or the dataset manages storage itself. If true, the underlying data will not be deleted when the dataset version is deleted"
},
"connectionName": {
"type": "string",
"description": "The Azure Storage Account connection name. Required if isReference is true."
},
"description": {
"type": "string",
"description": "The asset description text.",
Expand Down Expand Up @@ -2100,7 +2109,7 @@
},
"connectionName": {
"type": "string",
"description": "Name of Azure blob storage connection to use for generating temporary SAS token"
"description": "Azure Storage Account connection name to use for generating temporary SAS token"
},
"pendingUploadType": {
"type": "string",
Expand Down
Loading