You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 30, 2024. It is now read-only.
If you try to create the streaming endpoint with the new package 1.2.0 with the model provided below you can get an error from mediakind api
Streaming Endpoint load failed. 'cdnProvider' field only valid if CDN is enabled.
I believe it is because in the StreamingEndpointProperties class has CdnProvider property of StreamingEndpointCdnProvider type (enum) and it isn't nullable and by default has StandardAkamai value
code example
var properties = new StreamingEndpointProperties
{
Description = "my description",
ScaleUnits = 0,
Sku = new StreamingEndpointsCurrentSku
{
Name = "Standard",
Capacity = 600
}
};
Thank you!
The text was updated successfully, but these errors were encountered:
If you try to create the streaming endpoint with the new package 1.2.0 with the model provided below you can get an error from mediakind api
I believe it is because in the
StreamingEndpointProperties
class hasCdnProvider
property ofStreamingEndpointCdnProvider
type (enum) and it isn't nullable and by default hasStandardAkamai
valuecode example
Thank you!
The text was updated successfully, but these errors were encountered: