Skip to content

Commit d85066e

Browse files
author
SDKAuto
committed
CodeGen from PR 20489 in Azure/azure-rest-api-specs
Merge bb00fa54ec111721e1822dcad66bc3c85cf4b7b2 into 7c840caa77ac200f43636930d82fc31cf117241e
1 parent 17eea6e commit d85066e

File tree

311 files changed

+7444
-2235
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

311 files changed

+7444
-2235
lines changed

sdk/mediaservices/azure-resourcemanager-mediaservices/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Release History
22

3-
## 2.2.0-beta.1 (Unreleased)
3+
## 1.0.0-beta.1 (2022-09-01)
4+
5+
- 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).
46

57
### Features Added
68

sdk/mediaservices/azure-resourcemanager-mediaservices/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Azure Resource Manager MediaServices client library for Java.
44

5-
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).
5+
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).
66

77
## We'd love to hear your feedback
88

@@ -32,7 +32,7 @@ Various documentation is available to help you get started
3232
<dependency>
3333
<groupId>com.azure.resourcemanager</groupId>
3434
<artifactId>azure-resourcemanager-mediaservices</artifactId>
35-
<version>2.1.0</version>
35+
<version>2.2.0-beta.1</version>
3636
</dependency>
3737
```
3838
[//]: # ({x-version-update-end})

sdk/mediaservices/azure-resourcemanager-mediaservices/SAMPLE.md

Lines changed: 328 additions & 80 deletions
Large diffs are not rendered by default.

sdk/mediaservices/azure-resourcemanager-mediaservices/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<packaging>jar</packaging>
1414

1515
<name>Microsoft Azure SDK for MediaServices Management</name>
16-
<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>
16+
<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>
1717
<url>https://github.com/Azure/azure-sdk-for-java</url>
1818

1919
<licenses>
@@ -39,7 +39,6 @@
3939
<properties>
4040
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4141
<jacoco.skip>true</jacoco.skip>
42-
<revapi.skip>true</revapi.skip>
4342
</properties>
4443
<dependencies>
4544
<dependency>

sdk/mediaservices/azure-resourcemanager-mediaservices/src/main/java/com/azure/resourcemanager/mediaservices/MediaServicesManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ public MediaServicesManager authenticate(TokenCredential credential, AzureProfil
283283
.append("-")
284284
.append("com.azure.resourcemanager.mediaservices")
285285
.append("/")
286-
.append("2.1.0");
286+
.append("1.0.0-beta.1");
287287
if (!Configuration.getGlobalConfiguration().get("AZURE_TELEMETRY_DISABLED", false)) {
288288
userAgentBuilder
289289
.append(" (")

sdk/mediaservices/azure-resourcemanager-mediaservices/src/main/java/com/azure/resourcemanager/mediaservices/fluent/AccountFiltersClient.java

Lines changed: 30 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
/** An instance of this class provides access to all the operations defined in AccountFiltersClient. */
1515
public interface AccountFiltersClient {
1616
/**
17-
* List Account Filters in the Media Services account.
17+
* List Account Filters
18+
*
19+
* <p>List Account Filters in the Media Services account.
1820
*
1921
* @param resourceGroupName The name of the resource group within the Azure subscription.
2022
* @param accountName The Media Services account name.
@@ -27,7 +29,9 @@ public interface AccountFiltersClient {
2729
PagedIterable<AccountFilterInner> list(String resourceGroupName, String accountName);
2830

2931
/**
30-
* List Account Filters in the Media Services account.
32+
* List Account Filters
33+
*
34+
* <p>List Account Filters in the Media Services account.
3135
*
3236
* @param resourceGroupName The name of the resource group within the Azure subscription.
3337
* @param accountName The Media Services account name.
@@ -41,7 +45,9 @@ public interface AccountFiltersClient {
4145
PagedIterable<AccountFilterInner> list(String resourceGroupName, String accountName, Context context);
4246

4347
/**
44-
* Get the details of an Account Filter in the Media Services account.
48+
* Get an Account Filter.
49+
*
50+
* <p>Get the details of an Account Filter in the Media Services account.
4551
*
4652
* @param resourceGroupName The name of the resource group within the Azure subscription.
4753
* @param accountName The Media Services account name.
@@ -55,7 +61,9 @@ public interface AccountFiltersClient {
5561
AccountFilterInner get(String resourceGroupName, String accountName, String filterName);
5662

5763
/**
58-
* Get the details of an Account Filter in the Media Services account.
64+
* Get an Account Filter.
65+
*
66+
* <p>Get the details of an Account Filter in the Media Services account.
5967
*
6068
* @param resourceGroupName The name of the resource group within the Azure subscription.
6169
* @param accountName The Media Services account name.
@@ -71,7 +79,9 @@ Response<AccountFilterInner> getWithResponse(
7179
String resourceGroupName, String accountName, String filterName, Context context);
7280

7381
/**
74-
* Creates or updates an Account Filter in the Media Services account.
82+
* Create or update an Account Filter
83+
*
84+
* <p>Creates or updates an Account Filter in the Media Services account.
7585
*
7686
* @param resourceGroupName The name of the resource group within the Azure subscription.
7787
* @param accountName The Media Services account name.
@@ -87,7 +97,9 @@ AccountFilterInner createOrUpdate(
8797
String resourceGroupName, String accountName, String filterName, AccountFilterInner parameters);
8898

8999
/**
90-
* Creates or updates an Account Filter in the Media Services account.
100+
* Create or update an Account Filter
101+
*
102+
* <p>Creates or updates an Account Filter in the Media Services account.
91103
*
92104
* @param resourceGroupName The name of the resource group within the Azure subscription.
93105
* @param accountName The Media Services account name.
@@ -108,7 +120,9 @@ Response<AccountFilterInner> createOrUpdateWithResponse(
108120
Context context);
109121

110122
/**
111-
* Deletes an Account Filter in the Media Services account.
123+
* Delete an Account Filter.
124+
*
125+
* <p>Deletes an Account Filter in the Media Services account.
112126
*
113127
* @param resourceGroupName The name of the resource group within the Azure subscription.
114128
* @param accountName The Media Services account name.
@@ -121,7 +135,9 @@ Response<AccountFilterInner> createOrUpdateWithResponse(
121135
void delete(String resourceGroupName, String accountName, String filterName);
122136

123137
/**
124-
* Deletes an Account Filter in the Media Services account.
138+
* Delete an Account Filter.
139+
*
140+
* <p>Deletes an Account Filter in the Media Services account.
125141
*
126142
* @param resourceGroupName The name of the resource group within the Azure subscription.
127143
* @param accountName The Media Services account name.
@@ -136,7 +152,9 @@ Response<AccountFilterInner> createOrUpdateWithResponse(
136152
Response<Void> deleteWithResponse(String resourceGroupName, String accountName, String filterName, Context context);
137153

138154
/**
139-
* Updates an existing Account Filter in the Media Services account.
155+
* Update an Account Filter
156+
*
157+
* <p>Updates an existing Account Filter in the Media Services account.
140158
*
141159
* @param resourceGroupName The name of the resource group within the Azure subscription.
142160
* @param accountName The Media Services account name.
@@ -152,7 +170,9 @@ AccountFilterInner update(
152170
String resourceGroupName, String accountName, String filterName, AccountFilterInner parameters);
153171

154172
/**
155-
* Updates an existing Account Filter in the Media Services account.
173+
* Update an Account Filter
174+
*
175+
* <p>Updates an existing Account Filter in the Media Services account.
156176
*
157177
* @param resourceGroupName The name of the resource group within the Azure subscription.
158178
* @param accountName The Media Services account name.

sdk/mediaservices/azure-resourcemanager-mediaservices/src/main/java/com/azure/resourcemanager/mediaservices/fluent/AssetFiltersClient.java

Lines changed: 30 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
/** An instance of this class provides access to all the operations defined in AssetFiltersClient. */
1515
public interface AssetFiltersClient {
1616
/**
17-
* List Asset Filters associated with the specified Asset.
17+
* List Asset Filters
18+
*
19+
* <p>List Asset Filters associated with the specified Asset.
1820
*
1921
* @param resourceGroupName The name of the resource group within the Azure subscription.
2022
* @param accountName The Media Services account name.
@@ -28,7 +30,9 @@ public interface AssetFiltersClient {
2830
PagedIterable<AssetFilterInner> list(String resourceGroupName, String accountName, String assetName);
2931

3032
/**
31-
* List Asset Filters associated with the specified Asset.
33+
* List Asset Filters
34+
*
35+
* <p>List Asset Filters associated with the specified Asset.
3236
*
3337
* @param resourceGroupName The name of the resource group within the Azure subscription.
3438
* @param accountName The Media Services account name.
@@ -44,7 +48,9 @@ PagedIterable<AssetFilterInner> list(
4448
String resourceGroupName, String accountName, String assetName, Context context);
4549

4650
/**
47-
* Get the details of an Asset Filter associated with the specified Asset.
51+
* Get an Asset Filter.
52+
*
53+
* <p>Get the details of an Asset Filter associated with the specified Asset.
4854
*
4955
* @param resourceGroupName The name of the resource group within the Azure subscription.
5056
* @param accountName The Media Services account name.
@@ -59,7 +65,9 @@ PagedIterable<AssetFilterInner> list(
5965
AssetFilterInner get(String resourceGroupName, String accountName, String assetName, String filterName);
6066

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

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

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

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

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

149165
/**
150-
* Updates an existing Asset Filter associated with the specified Asset.
166+
* Update an Asset Filter
167+
*
168+
* <p>Updates an existing Asset Filter associated with the specified Asset.
151169
*
152170
* @param resourceGroupName The name of the resource group within the Azure subscription.
153171
* @param accountName The Media Services account name.
@@ -164,7 +182,9 @@ AssetFilterInner update(
164182
String resourceGroupName, String accountName, String assetName, String filterName, AssetFilterInner parameters);
165183

166184
/**
167-
* Updates an existing Asset Filter associated with the specified Asset.
185+
* Update an Asset Filter
186+
*
187+
* <p>Updates an existing Asset Filter associated with the specified Asset.
168188
*
169189
* @param resourceGroupName The name of the resource group within the Azure subscription.
170190
* @param accountName The Media Services account name.

0 commit comments

Comments
 (0)