In this article:
List Streaming Locators
Lists Streaming Locators which are associated with this asset.
POST https://{{api-endpoint}}/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Media/mediaServices/{accountName}/assets/{assetName}/listStreamingLocators?api-version={{api-version}}
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
accountName |
path | True | string | The Media Services account name. |
assetName |
path | True | string | The Asset name. |
resourceGroupName |
path | True | string | The name of the resource group within the Azure subscription. |
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 | ListStreamingLocatorsResponse | OK |
Other Status Codes | ErrorResponse | Detailed error information. |
Examples
List Asset SAS URLs
Technology | Sample request |
---|---|
HTTP |
POST https://{{api-endpoint}}/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg/providers/Microsoft.Media/mediaServices/contosomedia/assets/ClimbingMountSaintHelens/listStreamingLocators?api-version={{api-version}} |
Java |
/** Samples for Assets ListStreamingLocators. */ public final class Main { /* * x-ms-original-file: specification/mediaservices/resource-manager/Microsoft.Media/Metadata/stable/2022-08-01/examples/assets-list-streaming-locators.json */ /** * Sample code: List Asset SAS URLs. * * @param manager Entry point to MediaServicesManager. */ public static void listAssetSASURLs(com.azure.resourcemanager.mediaservices.MediaServicesManager manager) { manager .assets() .listStreamingLocatorsWithResponse( "contosorg", "contosomedia", "ClimbingMountSaintHelens", com.azure.core.util.Context.NONE); } } To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue. |
Python |
from azure.identity import DefaultAzureCredential from azure.mgmt.media import AzureMediaServices """ # PREREQUISITES pip install azure-identity pip install azure-mgmt-media # USAGE python assetsliststreaminglocators.py Before run the sample, please set the values of the client ID, tenant ID and client secret of the AAD application as environment variables: AZURE_CLIENT_ID, AZURE_TENANT_ID, AZURE_CLIENT_SECRET. For more info about how to get the value, please see: https://docs.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal """ def main(): client = AzureMediaServices( credential=DefaultAzureCredential(), subscription_id="00000000-0000-0000-0000-000000000000", ) response = client.assets.list_streaming_locators( resource_group_name="contoso", account_name="contosomedia", asset_name="ClimbingMountSaintHelens", ) print(response) # x-ms-original-file: specification/mediaservices/resource-manager/Microsoft.Media/Metadata/stable/2022-08-01/examples/assets-list-streaming-locators.json if __name__ == "__main__": main() To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue. |
Go |
package armmediaservices_test import ( "context" "log" "github.com/Azure/azure-sdk-for-go/sdk/azidentity" "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/mediaservices/armmediaservices/v3" ) // Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/e7bf3adfa2d5e5cdbb804eec35279501794f461c/specification/mediaservices/resource-manager/Microsoft.Media/Metadata/stable/2022-08-01/examples/assets-list-streaming-locators.json func ExampleAssetsClient_ListStreamingLocators() { cred, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { log.Fatalf("failed to obtain a credential: %v", err) } ctx := context.Background() clientFactory, err := armmediaservices.NewClientFactory("", cred, nil) if err != nil { log.Fatalf("failed to create client: %v", err) } res, err := clientFactory.NewAssetsClient().ListStreamingLocators(ctx, "contoso", "contosomedia", "ClimbingMountSaintHelens", nil) if err != nil { log.Fatalf("failed to finish the request: %v", err) } // You could use response here. We use blank identifier for just demo purposes. _ = res // If the HTTP response code is 200 as defined in example definition, your response structure would look as follows. Please pay attention that all the values in the output are fake values for just demo purposes. // res.ListStreamingLocatorsResponse = armmediaservices.ListStreamingLocatorsResponse{ // StreamingLocators: []*armmediaservices.AssetStreamingLocator{ // { // Name: to.Ptr("secureStreamingLocator"), // AssetName: to.Ptr("ClimbingMountSaintHelens"), // Created: to.Ptr(func() time.Time { t, _ := time.Parse(time.RFC3339Nano, "2018-08-08T18:29:26.972Z"); return t}()), // EndTime: to.Ptr(func() time.Time { t, _ := time.Parse(time.RFC3339Nano, "9999-12-31T23:59:59.999Z"); return t}()), // StreamingLocatorID: to.Ptr("36b74ce3-20b4-4de0-84f1-97e9138e886c"), // StreamingPolicyName: to.Ptr("secureStreamingPolicy"), // }, // { // Name: to.Ptr("clearStreamingLocator"), // AssetName: to.Ptr("ClimbingMountSaintHelens"), // Created: to.Ptr(func() time.Time { t, _ := time.Parse(time.RFC3339Nano, "2018-08-08T18:29:26.948Z"); return t}()), // EndTime: to.Ptr(func() time.Time { t, _ := time.Parse(time.RFC3339Nano, "9999-12-31T23:59:59.999Z"); return t}()), // StreamingLocatorID: to.Ptr("3e8d9ac3-50f6-4f6d-8482-078ceb56f23a"), // StreamingPolicyName: to.Ptr("clearStreamingPolicy"), // }}, // } } To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue. |
JavaScript |
const { AzureMediaServices } = require("@azure/arm-mediaservices"); const { DefaultAzureCredential } = require("@azure/identity"); /** * This sample demonstrates how to Lists Streaming Locators which are associated with this asset. * * @summary Lists Streaming Locators which are associated with this asset. * x-ms-original-file: specification/mediaservices/resource-manager/Microsoft.Media/Metadata/stable/2022-08-01/examples/assets-list-streaming-locators.json */ async function listAssetSasUrLs() { const subscriptionId = process.env["MEDIASERVICES_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; const resourceGroupName = process.env["MEDIASERVICES_RESOURCE_GROUP"] || "contoso"; const accountName = "contosomedia"; const assetName = "ClimbingMountSaintHelens"; const credential = new DefaultAzureCredential(); const client = new AzureMediaServices(credential, subscriptionId); const result = await client.assets.listStreamingLocators( resourceGroupName, accountName, assetName ); console.log(result); } To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue. |
.NET |
using System; using System.Threading.Tasks; using Azure; using Azure.Core; using Azure.Identity; using Azure.ResourceManager; using Azure.ResourceManager.Media; using Azure.ResourceManager.Media.Models; // Generated from example definition: specification/mediaservices/resource-manager/Microsoft.Media/Metadata/stable/2022-08-01/examples/assets-list-streaming-locators.json // this example is just showing the usage of "Assets_ListStreamingLocators" operation, for the dependent resources, they will have to be created separately. // get your azure access token, for more details of how Azure SDK get your access token, please refer to https://learn.microsoft.com/en-us/dotnet/azure/sdk/authentication?tabs=command-line TokenCredential cred = new DefaultAzureCredential(); // authenticate your client ArmClient client = new ArmClient(cred); // this example assumes you already have this MediaAssetResource created on azure // for more information of creating MediaAssetResource, please refer to the document of MediaAssetResource string subscriptionId = "00000000-0000-0000-0000-000000000000"; string resourceGroupName = "contoso"; string accountName = "contosomedia"; string assetName = "ClimbingMountSaintHelens"; ResourceIdentifier mediaAssetResourceId = MediaAssetResource.CreateResourceIdentifier(subscriptionId, resourceGroupName, accountName, assetName); MediaAssetResource mediaAsset = client.GetMediaAssetResource(mediaAssetResourceId); // invoke the operation and iterate over the result await foreach (MediaAssetStreamingLocator item in mediaAsset.GetStreamingLocatorsAsync()) { Console.WriteLine($"Succeeded: {item}"); } Console.WriteLine($"Succeeded"); To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue. |
Sample response
Status code: 200
{ "streamingLocators": [ { "name": "secureStreamingLocator", "assetName": "ClimbingMountSaintHelens", "created": "2018-08-08T18:29:26.9729344Z", "endTime": "9999-12-31T23:59:59.9999999Z", "streamingLocatorId": "36b74ce3-20b4-4de0-84f1-97e9138e886c", "streamingPolicyName": "secureStreamingPolicy" }, { "name": "clearStreamingLocator", "assetName": "ClimbingMountSaintHelens", "created": "2018-08-08T18:29:26.9487636Z", "endTime": "9999-12-31T23:59:59.9999999Z", "streamingLocatorId": "3e8d9ac3-50f6-4f6d-8482-078ceb56f23a", "streamingPolicyName": "clearStreamingPolicy" } ] }
Definitions
Name | Description |
---|---|
AssetStreamingLocator | Properties of the Streaming Locator. |
ErrorAdditionalInfo | The resource management error additional info. |
ErrorDetail | The error detail. |
ErrorResponse | Error response |
ListStreamingLocatorsResponse | The Streaming Locators associated with this Asset. |
AssetStreamingLocator
Properties of the Streaming Locator.
Name | Type | Description |
---|---|---|
assetName | string | Asset Name. |
created | string | The creation time of the Streaming Locator. |
defaultContentKeyPolicyName | string | Name of the default ContentKeyPolicy used by this Streaming Locator. |
endTime | string | The end time of the Streaming Locator. |
name | string | Streaming Locator name. |
startTime | string | The start time of the Streaming Locator. |
streamingLocatorId | string | StreamingLocatorId of the Streaming Locator. |
streamingPolicyName | string | Name of the Streaming Policy used by this Streaming Locator. |
ErrorAdditionalInfo
The resource management error additional info.
Name | Type | Description |
---|---|---|
info | object | The additional info. |
type | string | The additional info type. |
ErrorDetail
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
Name | Type | Description |
---|---|---|
error | ErrorDetail | The error object. |
ListStreamingLocatorsResponse
The Streaming Locators associated with this Asset.
Name | Type | Description |
---|---|---|
streamingLocators | AssetStreamingLocator | The list of Streaming Locators. |