Skip to content

Commit

Permalink
CodeGen from PR 21190 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge 78b7e5a8324fbae41d02872bbdf7d0403cfcf1da into c9a5d90fd5d0cfce06a7259eb55be4feb5efe62b
  • Loading branch information
SDKAuto committed Oct 31, 2022
1 parent c690b51 commit 91f8270
Show file tree
Hide file tree
Showing 424 changed files with 3,367 additions and 2,216 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Release History

## 2.3.0-beta.1 (Unreleased)
## 1.0.0-beta.1 (2022-10-31)

- 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-encoding-2022-07. 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-metadata-2022-08. 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-encoding-2022-07. 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.2.0</version>
<version>2.3.0-beta.1</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
274 changes: 137 additions & 137 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-metadata-2022-08.</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-encoding-2022-07.</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.2.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 @@ -44,22 +44,6 @@ public interface AccountFiltersClient {
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedIterable<AccountFilterInner> list(String resourceGroupName, String accountName, Context context);

/**
* 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.
* @param filterName The Account Filter name.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the details of an Account Filter in the Media Services account.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
AccountFilterInner get(String resourceGroupName, String accountName, String filterName);

/**
* Get an Account Filter.
*
Expand All @@ -79,22 +63,20 @@ Response<AccountFilterInner> getWithResponse(
String resourceGroupName, String accountName, String filterName, Context context);

/**
* Create or update an Account Filter
* Get an Account Filter.
*
* <p>Creates or updates an Account Filter in the Media Services account.
* <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.
* @param filterName The Account Filter name.
* @param parameters The request parameters.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return an Account Filter.
* @return the details of an Account Filter in the Media Services account.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
AccountFilterInner createOrUpdate(
String resourceGroupName, String accountName, String filterName, AccountFilterInner parameters);
AccountFilterInner get(String resourceGroupName, String accountName, String filterName);

/**
* Create or update an Account Filter
Expand All @@ -120,19 +102,22 @@ Response<AccountFilterInner> createOrUpdateWithResponse(
Context context);

/**
* Delete an Account Filter.
* Create or update an Account Filter
*
* <p>Deletes an Account Filter in the Media Services account.
* <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.
* @param filterName The Account Filter name.
* @param parameters The request parameters.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return an Account Filter.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
void delete(String resourceGroupName, String accountName, String filterName);
AccountFilterInner createOrUpdate(
String resourceGroupName, String accountName, String filterName, AccountFilterInner parameters);

/**
* Delete an Account Filter.
Expand All @@ -152,22 +137,19 @@ Response<AccountFilterInner> createOrUpdateWithResponse(
Response<Void> deleteWithResponse(String resourceGroupName, String accountName, String filterName, Context context);

/**
* Update an Account Filter
* Delete an Account Filter.
*
* <p>Updates an existing Account Filter in the Media Services account.
* <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.
* @param filterName The Account Filter name.
* @param parameters The request parameters.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return an Account Filter.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
AccountFilterInner update(
String resourceGroupName, String accountName, String filterName, AccountFilterInner parameters);
void delete(String resourceGroupName, String accountName, String filterName);

/**
* Update an Account Filter
Expand All @@ -191,4 +173,22 @@ Response<AccountFilterInner> updateWithResponse(
String filterName,
AccountFilterInner parameters,
Context context);

/**
* 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.
* @param filterName The Account Filter name.
* @param parameters The request parameters.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return an Account Filter.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
AccountFilterInner update(
String resourceGroupName, String accountName, String filterName, AccountFilterInner parameters);
}
Original file line number Diff line number Diff line change
Expand Up @@ -47,23 +47,6 @@ public interface AssetFiltersClient {
PagedIterable<AssetFilterInner> list(
String resourceGroupName, String accountName, String assetName, Context context);

/**
* 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.
* @param assetName The Asset name.
* @param filterName The Asset Filter name.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the details of an Asset Filter associated with the specified Asset.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
AssetFilterInner get(String resourceGroupName, String accountName, String assetName, String filterName);

/**
* Get an Asset Filter.
*
Expand All @@ -84,23 +67,21 @@ Response<AssetFilterInner> getWithResponse(
String resourceGroupName, String accountName, String assetName, String filterName, Context context);

/**
* Create or update an Asset Filter
* Get an Asset Filter.
*
* <p>Creates or updates an Asset Filter associated with the specified Asset.
* <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.
* @param assetName The Asset name.
* @param filterName The Asset Filter name.
* @param parameters The request parameters.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return an Asset Filter.
* @return the details of an Asset Filter associated with the specified Asset.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
AssetFilterInner createOrUpdate(
String resourceGroupName, String accountName, String assetName, String filterName, AssetFilterInner parameters);
AssetFilterInner get(String resourceGroupName, String accountName, String assetName, String filterName);

/**
* Create or update an Asset Filter
Expand Down Expand Up @@ -128,20 +109,23 @@ Response<AssetFilterInner> createOrUpdateWithResponse(
Context context);

/**
* Delete an Asset Filter.
* Create or update an Asset Filter
*
* <p>Deletes an Asset Filter associated with the specified Asset.
* <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.
* @param assetName The Asset name.
* @param filterName The Asset Filter name.
* @param parameters The request parameters.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return an Asset Filter.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
void delete(String resourceGroupName, String accountName, String assetName, String filterName);
AssetFilterInner createOrUpdate(
String resourceGroupName, String accountName, String assetName, String filterName, AssetFilterInner parameters);

/**
* Delete an Asset Filter.
Expand All @@ -163,23 +147,20 @@ Response<Void> deleteWithResponse(
String resourceGroupName, String accountName, String assetName, String filterName, Context context);

/**
* Update an Asset Filter
* Delete an Asset Filter.
*
* <p>Updates an existing Asset Filter associated with the specified Asset.
* <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.
* @param assetName The Asset name.
* @param filterName The Asset Filter name.
* @param parameters The request parameters.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return an Asset Filter.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
AssetFilterInner update(
String resourceGroupName, String accountName, String assetName, String filterName, AssetFilterInner parameters);
void delete(String resourceGroupName, String accountName, String assetName, String filterName);

/**
* Update an Asset Filter
Expand All @@ -205,4 +186,23 @@ Response<AssetFilterInner> updateWithResponse(
String filterName,
AssetFilterInner parameters,
Context context);

/**
* 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.
* @param assetName The Asset name.
* @param filterName The Asset Filter name.
* @param parameters The request parameters.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return an Asset Filter.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
AssetFilterInner update(
String resourceGroupName, String accountName, String assetName, String filterName, AssetFilterInner parameters);
}
Loading

0 comments on commit 91f8270

Please sign in to comment.