Streaming Endpoints - Skus

List StreamingEndpoint skus
List streaming endpoint supported skus.

GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Media/mediaservices/{accountName}/streamingEndpoints/{streamingEndpointName}/skus?api-version=2022-11-01

URI Parameters

Name In Required Type Description
accountName
path True

string

The Media Services account name.

resourceGroupName
path True

string

The name of the resource group within the Azure subscription.

streamingEndpointName
path True

string

The name of the streaming endpoint, maximum length is 24.

Regex pattern: ^[a-zA-Z0-9]+(-*[a-zA-Z0-9])*$

subscriptionId
path True

string

The unique identifier for a Microsoft Azure subscription.

api-version
query True

string

The version of the API to be used with the client request.

Responses

Name Type Description
200 OK

StreamingEndpointSkuInfoListResult

OK. The request has succeeded.

Other Status Codes

ErrorResponse

The streaming error response describing why the operation failed.

Examples

List a streaming endpoint sku

Sample Request

GET https://management.azure.com/subscriptions/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourceGroups/mediaresources/providers/Microsoft.Media/mediaservices/slitestmedia10/streamingEndpoints/myStreamingEndpoint1/skus?api-version=2022-11-01

Sample Response

{
  "value": [
    {
      "resourceType": "Microsoft.Media/mediaservices/streamingEndpoints",
      "capacity": {
        "scaleType": "Automatic",
        "default": 1,
        "minimum": 1,
        "maximum": 10
      },
      "sku": {
        "name": "Premium"
      }
    }
  ]
}

Definitions

Name Description
ArmStreamingEndpointCapacity

The streaming endpoint sku capacity.

ArmStreamingEndpointSku

The streaming endpoint sku.

ArmStreamingEndpointSkuInfo
ErrorAdditionalInfo

The resource management error additional info.

ErrorDetail

The error detail.

ErrorResponse

Error response

StreamingEndpointSkuInfoListResult

ArmStreamingEndpointCapacity

The streaming endpoint sku capacity.

Name Type Description
default

integer

The streaming endpoint default capacity.

maximum

integer

The streaming endpoint maximum capacity.

minimum

integer

The streaming endpoint minimum capacity.

scaleType

string

ArmStreamingEndpointSku

The streaming endpoint sku.

Name Type Description
name

string

The streaming endpoint sku name.

ArmStreamingEndpointSkuInfo

Name Type Description
capacity

ArmStreamingEndpointCapacity

The streaming endpoint sku capacity.

resourceType

string

sku

ArmStreamingEndpointSku

The streaming endpoint sku.

ErrorAdditionalInfo

The resource management error additional info.

Name Type Description
info

object

The additional info.

type

string

The additional info type.

ErrorDetail

The error detail.

Name Type Description
additionalInfo

ErrorAdditionalInfo[]

The error additional info.

code

string

The error code.

details

ErrorDetail[]

The error details.

message

string

The error message.

target

string

The error target.

ErrorResponse

Error response

Name Type Description
error

ErrorDetail

The error object.

StreamingEndpointSkuInfoListResult

Name Type Description
value

ArmStreamingEndpointSkuInfo[]

The result of the List StreamingEndpoint skus.