Skip to content
Draft
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
2 changes: 2 additions & 0 deletions specification/storage/Microsoft.BlobStorage/client.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ namespace Customizations;
"rust"
);

@@alternateType(AccessPolicy.expiry, string, "rust");
@@alternateType(AccessPolicy.start, string, "rust");
@@alternateType(BlobPropertiesInternal.contentLength, uint64, "rust");
@@alternateType(BlobContentLengthRequired.blobContentLength, uint64, "rust");
@@alternateType(ContentLengthResponseHeader.contentLength, uint64, "rust");
Expand Down
8 changes: 6 additions & 2 deletions specification/storage/Microsoft.BlobStorage/models.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -435,8 +435,12 @@ model BlockLookupList {
}

/** Represents an array of signed identifiers */
@Xml.name("SignedIdentifiers")
model SignedIdentifiers is Array<SignedIdentifier>;
model SignedIdentifiers {
/** The array of signed identifiers. */
@Xml.unwrapped
@Xml.name("SignedIdentifier")
items: Array<SignedIdentifier>;
}

/** The signed identifier. */
@Xml.name("SignedIdentifier")
Expand Down
Loading