Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Release History

## 2.2.0-beta.1 (Unreleased)
## 1.0.0-beta.1 (2022-09-01)

- Azure Resource Manager MediaServices client library for Java. This package contains Microsoft Azure SDK for MediaServices Management SDK. This Swagger was generated by the API Framework. Package tag package-metadata-2022-08. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).

### Features Added

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Azure Resource Manager MediaServices client library for Java.

This package contains Microsoft Azure SDK for MediaServices Management SDK. This Swagger was generated by the API Framework. Package tag package-account-2021-11. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).
This package contains Microsoft Azure SDK for MediaServices Management SDK. This Swagger was generated by the API Framework. Package tag package-metadata-2022-08. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).

## We'd love to hear your feedback

Expand Down Expand Up @@ -32,7 +32,7 @@ Various documentation is available to help you get started
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-mediaservices</artifactId>
<version>2.1.0</version>
<version>2.2.0-beta.1</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
408 changes: 328 additions & 80 deletions sdk/mediaservices/azure-resourcemanager-mediaservices/SAMPLE.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<packaging>jar</packaging>

<name>Microsoft Azure SDK for MediaServices Management</name>
<description>This package contains Microsoft Azure SDK for MediaServices Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. This Swagger was generated by the API Framework. Package tag package-account-2021-11.</description>
<description>This package contains Microsoft Azure SDK for MediaServices Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. This Swagger was generated by the API Framework. Package tag package-metadata-2022-08.</description>
<url>https://github.com/Azure/azure-sdk-for-java</url>

<licenses>
Expand All @@ -39,7 +39,6 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jacoco.skip>true</jacoco.skip>
<revapi.skip>true</revapi.skip>
</properties>
<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ public MediaServicesManager authenticate(TokenCredential credential, AzureProfil
.append("-")
.append("com.azure.resourcemanager.mediaservices")
.append("/")
.append("2.1.0");
.append("1.0.0-beta.1");
if (!Configuration.getGlobalConfiguration().get("AZURE_TELEMETRY_DISABLED", false)) {
userAgentBuilder
.append(" (")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
/** An instance of this class provides access to all the operations defined in AccountFiltersClient. */
public interface AccountFiltersClient {
/**
* List Account Filters in the Media Services account.
* List Account Filters
*
* <p>List Account Filters in the Media Services account.
*
* @param resourceGroupName The name of the resource group within the Azure subscription.
* @param accountName The Media Services account name.
Expand All @@ -27,7 +29,9 @@ public interface AccountFiltersClient {
PagedIterable<AccountFilterInner> list(String resourceGroupName, String accountName);

/**
* List Account Filters in the Media Services account.
* List Account Filters
*
* <p>List Account Filters in the Media Services account.
*
* @param resourceGroupName The name of the resource group within the Azure subscription.
* @param accountName The Media Services account name.
Expand All @@ -41,7 +45,9 @@ public interface AccountFiltersClient {
PagedIterable<AccountFilterInner> list(String resourceGroupName, String accountName, Context context);

/**
* Get the details of an Account Filter in the Media Services account.
* Get an Account Filter.
*
* <p>Get the details of an Account Filter in the Media Services account.
*
* @param resourceGroupName The name of the resource group within the Azure subscription.
* @param accountName The Media Services account name.
Expand All @@ -55,7 +61,9 @@ public interface AccountFiltersClient {
AccountFilterInner get(String resourceGroupName, String accountName, String filterName);

/**
* Get the details of an Account Filter in the Media Services account.
* Get an Account Filter.
*
* <p>Get the details of an Account Filter in the Media Services account.
*
* @param resourceGroupName The name of the resource group within the Azure subscription.
* @param accountName The Media Services account name.
Expand All @@ -71,7 +79,9 @@ Response<AccountFilterInner> getWithResponse(
String resourceGroupName, String accountName, String filterName, Context context);

/**
* Creates or updates an Account Filter in the Media Services account.
* Create or update an Account Filter
*
* <p>Creates or updates an Account Filter in the Media Services account.
*
* @param resourceGroupName The name of the resource group within the Azure subscription.
* @param accountName The Media Services account name.
Expand All @@ -87,7 +97,9 @@ AccountFilterInner createOrUpdate(
String resourceGroupName, String accountName, String filterName, AccountFilterInner parameters);

/**
* Creates or updates an Account Filter in the Media Services account.
* Create or update an Account Filter
*
* <p>Creates or updates an Account Filter in the Media Services account.
*
* @param resourceGroupName The name of the resource group within the Azure subscription.
* @param accountName The Media Services account name.
Expand All @@ -108,7 +120,9 @@ Response<AccountFilterInner> createOrUpdateWithResponse(
Context context);

/**
* Deletes an Account Filter in the Media Services account.
* Delete an Account Filter.
*
* <p>Deletes an Account Filter in the Media Services account.
*
* @param resourceGroupName The name of the resource group within the Azure subscription.
* @param accountName The Media Services account name.
Expand All @@ -121,7 +135,9 @@ Response<AccountFilterInner> createOrUpdateWithResponse(
void delete(String resourceGroupName, String accountName, String filterName);

/**
* Deletes an Account Filter in the Media Services account.
* Delete an Account Filter.
*
* <p>Deletes an Account Filter in the Media Services account.
*
* @param resourceGroupName The name of the resource group within the Azure subscription.
* @param accountName The Media Services account name.
Expand All @@ -136,7 +152,9 @@ Response<AccountFilterInner> createOrUpdateWithResponse(
Response<Void> deleteWithResponse(String resourceGroupName, String accountName, String filterName, Context context);

/**
* Updates an existing Account Filter in the Media Services account.
* Update an Account Filter
*
* <p>Updates an existing Account Filter in the Media Services account.
*
* @param resourceGroupName The name of the resource group within the Azure subscription.
* @param accountName The Media Services account name.
Expand All @@ -152,7 +170,9 @@ AccountFilterInner update(
String resourceGroupName, String accountName, String filterName, AccountFilterInner parameters);

/**
* Updates an existing Account Filter in the Media Services account.
* Update an Account Filter
*
* <p>Updates an existing Account Filter in the Media Services account.
*
* @param resourceGroupName The name of the resource group within the Azure subscription.
* @param accountName The Media Services account name.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
/** An instance of this class provides access to all the operations defined in AssetFiltersClient. */
public interface AssetFiltersClient {
/**
* List Asset Filters associated with the specified Asset.
* List Asset Filters
*
* <p>List Asset Filters associated with the specified Asset.
*
* @param resourceGroupName The name of the resource group within the Azure subscription.
* @param accountName The Media Services account name.
Expand All @@ -28,7 +30,9 @@ public interface AssetFiltersClient {
PagedIterable<AssetFilterInner> list(String resourceGroupName, String accountName, String assetName);

/**
* List Asset Filters associated with the specified Asset.
* List Asset Filters
*
* <p>List Asset Filters associated with the specified Asset.
*
* @param resourceGroupName The name of the resource group within the Azure subscription.
* @param accountName The Media Services account name.
Expand All @@ -44,7 +48,9 @@ PagedIterable<AssetFilterInner> list(
String resourceGroupName, String accountName, String assetName, Context context);

/**
* Get the details of an Asset Filter associated with the specified Asset.
* Get an Asset Filter.
*
* <p>Get the details of an Asset Filter associated with the specified Asset.
*
* @param resourceGroupName The name of the resource group within the Azure subscription.
* @param accountName The Media Services account name.
Expand All @@ -59,7 +65,9 @@ PagedIterable<AssetFilterInner> list(
AssetFilterInner get(String resourceGroupName, String accountName, String assetName, String filterName);

/**
* Get the details of an Asset Filter associated with the specified Asset.
* Get an Asset Filter.
*
* <p>Get the details of an Asset Filter associated with the specified Asset.
*
* @param resourceGroupName The name of the resource group within the Azure subscription.
* @param accountName The Media Services account name.
Expand All @@ -76,7 +84,9 @@ Response<AssetFilterInner> getWithResponse(
String resourceGroupName, String accountName, String assetName, String filterName, Context context);

/**
* Creates or updates an Asset Filter associated with the specified Asset.
* Create or update an Asset Filter
*
* <p>Creates or updates an Asset Filter associated with the specified Asset.
*
* @param resourceGroupName The name of the resource group within the Azure subscription.
* @param accountName The Media Services account name.
Expand All @@ -93,7 +103,9 @@ AssetFilterInner createOrUpdate(
String resourceGroupName, String accountName, String assetName, String filterName, AssetFilterInner parameters);

/**
* Creates or updates an Asset Filter associated with the specified Asset.
* Create or update an Asset Filter
*
* <p>Creates or updates an Asset Filter associated with the specified Asset.
*
* @param resourceGroupName The name of the resource group within the Azure subscription.
* @param accountName The Media Services account name.
Expand All @@ -116,7 +128,9 @@ Response<AssetFilterInner> createOrUpdateWithResponse(
Context context);

/**
* Deletes an Asset Filter associated with the specified Asset.
* Delete an Asset Filter.
*
* <p>Deletes an Asset Filter associated with the specified Asset.
*
* @param resourceGroupName The name of the resource group within the Azure subscription.
* @param accountName The Media Services account name.
Expand All @@ -130,7 +144,9 @@ Response<AssetFilterInner> createOrUpdateWithResponse(
void delete(String resourceGroupName, String accountName, String assetName, String filterName);

/**
* Deletes an Asset Filter associated with the specified Asset.
* Delete an Asset Filter.
*
* <p>Deletes an Asset Filter associated with the specified Asset.
*
* @param resourceGroupName The name of the resource group within the Azure subscription.
* @param accountName The Media Services account name.
Expand All @@ -147,7 +163,9 @@ Response<Void> deleteWithResponse(
String resourceGroupName, String accountName, String assetName, String filterName, Context context);

/**
* Updates an existing Asset Filter associated with the specified Asset.
* Update an Asset Filter
*
* <p>Updates an existing Asset Filter associated with the specified Asset.
*
* @param resourceGroupName The name of the resource group within the Azure subscription.
* @param accountName The Media Services account name.
Expand All @@ -164,7 +182,9 @@ AssetFilterInner update(
String resourceGroupName, String accountName, String assetName, String filterName, AssetFilterInner parameters);

/**
* Updates an existing Asset Filter associated with the specified Asset.
* Update an Asset Filter
*
* <p>Updates an existing Asset Filter associated with the specified Asset.
*
* @param resourceGroupName The name of the resource group within the Azure subscription.
* @param accountName The Media Services account name.
Expand Down
Loading