In this article:
Delete Transform
Deletes a Transform.
DELETE https://{{api-endpoint}}/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Media/mediaServices/{accountName}/transforms/{transformName}?api-version={{api-version}}
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. |
subscriptionId |
path | True | string | The unique identifier for a Microsoft Azure subscription. |
transformName |
path | True | string | The Transform name. |
api-version |
query | True | string | The version of the API to be used with the client request. |
Responses
| Name | Type | Description |
|---|---|---|
| 200 OK | OK | |
| 204 No Content | NoContent | |
| Other Status Codes | ErrorResponse | Detailed error information. |
Examples
Delete a Transform
| Technology | Sample request |
|---|---|
| HTTP |
DELETE https://{{api-endpoint}}/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosoresources/providers/Microsoft.Media/mediaServices/contosomedia/transforms/sampleTransform?api-version={{api-version}}
|
| Java |
/**
* Samples for Transforms Delete.
*/
public final class Main {
/*
* x-ms-original-file:
* specification/mediaservices/resource-manager/Microsoft.Media/Encoding/stable/2022-07-01/examples/transforms-
* delete.json
*/
/**
* Sample code: Delete a Transform.
*
* @param manager Entry point to MediaServicesManager.
*/
public static void deleteATransform(com.azure.resourcemanager.mediaservices.MediaServicesManager manager) {
manager.transforms().deleteWithResponse("contosoresources", "contosomedia", "sampleTransform",
com.azure.core.util.Context.NONE);
}
}
|
| Python |
from azure.identity import DefaultAzureCredential
from azure.mgmt.media import AzureMediaServices
"""
# PREREQUISITES
pip install azure-identity
pip install azure-mgmt-media
# USAGE
python transformsdelete.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.transforms.delete(
resource_group_name="contosoresources",
account_name="contosomedia",
transform_name="sampleTransform",
)
print(response)
# x-ms-original-file: specification/mediaservices/resource-manager/Microsoft.Media/Encoding/stable/2022-07-01/examples/transforms-delete.json
if __name__ == "__main__":
main()
|
| JavaScript |
const { AzureMediaServices } = require("@azure/arm-mediaservices");
const { DefaultAzureCredential } = require("@azure/identity");
/**
* This sample demonstrates how to Deletes a Transform.
*
* @summary Deletes a Transform.
* x-ms-original-file: specification/mediaservices/resource-manager/Microsoft.Media/Encoding/stable/2022-07-01/examples/transforms-delete.json
*/
async function deleteATransform() {
const subscriptionId =
process.env["MEDIASERVICES_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000";
const resourceGroupName = process.env["MEDIASERVICES_RESOURCE_GROUP"] || "contosoresources";
const accountName = "contosomedia";
const transformName = "sampleTransform";
const credential = new DefaultAzureCredential();
const client = new AzureMediaServices(credential, subscriptionId);
const result = await client.transforms.delete(resourceGroupName, accountName, transformName);
console.log(result);
}
To use the SDK library in your project, see this documentation. |
| .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/Encoding/stable/2022-07-01/examples/transforms-delete.json // this example is just showing the usage of "Transforms_Delete" 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 MediaTransformResource created on azure // for more information of creating MediaTransformResource, please refer to the document of MediaTransformResource string subscriptionId = "00000000-0000-0000-0000-000000000000"; string resourceGroupName = "contosoresources"; string accountName = "contosomedia"; string transformName = "sampleTransform"; ResourceIdentifier mediaTransformResourceId = MediaTransformResource.CreateResourceIdentifier(subscriptionId, resourceGroupName, accountName, transformName); MediaTransformResource mediaTransform = client.GetMediaTransformResource(mediaTransformResourceId); // invoke the operation await mediaTransform.DeleteAsync(WaitUntil.Completed); Console.WriteLine($"Succeeded"); To use the SDK library in your project, see this documentation. |
Sample response
Status code: 200
Status code: 204
Definitions
| Name | Description |
|---|---|
| ErrorAdditionalInfo | The resource management error additional info. |
| ErrorDetail | The error detail. |
| ErrorResponse | Error response |
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. |