Struct AssetConversionInputOptions

Input parameters for specifying an asset to convert.

struct Microsoft::Azure::RemoteRendering::AssetConversionInputOptions

Fields

StorageContainerUri

The URI of the Azure Blob Storage container containing the input model. Example: "https://contosostorage01.blob.core.windows.net/arrInput"

std::string StorageContainerUri{};

StorageContainerReadListSas

Optional. An Azure Blob Storage container shared access signature (SAS) giving read and list access to the storage container. If not provided, the Azure Remote Rendering account needs to be linked with the storage account containing the blob container.

std::string StorageContainerReadListSas{};

BlobPrefix

Only Blobs starting with this prefix will be downloaded to perform the conversion. Example: "models/"

std::string BlobPrefix{};

RelativeInputAssetPath

The relative path starting at blobPrefix (or at the container root if blobPrefix is not specified) to the input model. Must point to file with a supported file format ending. Example: "house.fbx".

std::string RelativeInputAssetPath{};

See also

See also