Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR azure-resourcemanager-mediaservices] Agent pool start/stop #10798

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Release History

## 1.1.0-beta.3 (Unreleased)
## 1.0.0-beta.1 (2021-09-21)

- 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-2021-06. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).

## 1.1.0-beta.2 (2021-07-16)

Expand Down
Original file line number Diff line number Diff line change
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>1.1.0-beta.2</version>
<version>1.1.0-beta.3</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down Expand Up @@ -74,7 +74,6 @@ See [API design][design] for general introduction on design and key concepts on

## Examples

[Code snippets and samples](https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/mediaservices/azure-resourcemanager-mediaservices/SAMPLE.md)


## Troubleshooting
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@
<artifactId>revapi-maven-plugin</artifactId>
<version>0.11.2</version> <!-- {x-version-update;org.revapi:revapi-maven-plugin;external_dependency} -->
<configuration>
<skip>true</skip>
<analysisConfiguration>
<revapi.ignore>
<item>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ public MediaServicesManager authenticate(TokenCredential credential, AzureProfil
.append("-")
.append("com.azure.resourcemanager.mediaservices")
.append("/")
.append("1.1.0-beta.2");
.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 @@ -24,7 +24,7 @@ public interface LiveEventsClient {
* @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 LiveEvent list result.
* @return liveEventListResult.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedIterable<LiveEventInner> list(String resourceGroupName, String accountName);
Expand All @@ -38,7 +38,7 @@ public interface LiveEventsClient {
* @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 LiveEvent list result.
* @return liveEventListResult.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedIterable<LiveEventInner> list(String resourceGroupName, String accountName, Context context);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public interface LiveOutputsClient {
* @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 LiveOutput list result.
* @return liveOutputListResult.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedIterable<LiveOutputInner> list(String resourceGroupName, String accountName, String liveEventName);
Expand All @@ -39,7 +39,7 @@ public interface LiveOutputsClient {
* @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 LiveOutput list result.
* @return liveOutputListResult.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedIterable<LiveOutputInner> list(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public interface StreamingEndpointsClient {
* @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 streaming endpoint list result.
* @return streamingEndpointListResult.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedIterable<StreamingEndpointInner> list(String resourceGroupName, String accountName);
Expand All @@ -38,7 +38,7 @@ public interface StreamingEndpointsClient {
* @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 streaming endpoint list result.
* @return streamingEndpointListResult.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedIterable<StreamingEndpointInner> list(String resourceGroupName, String accountName, Context context);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import com.azure.resourcemanager.mediaservices.models.JobState;
import com.azure.resourcemanager.mediaservices.models.Priority;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.time.OffsetDateTime;
import java.util.List;
Expand Down Expand Up @@ -85,6 +86,7 @@ public class JobInner extends ProxyResource {
* JobOutput state events.
*/
@JsonProperty(value = "properties.correlationData")
@JsonInclude(value = JsonInclude.Include.NON_NULL, content = JsonInclude.Include.ALWAYS)
private Map<String, String> correlationData;

/*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ Mono<Response<LiveEventListResult>> listNext(
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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 LiveEvent list result.
* @return liveEventListResult.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<PagedResponse<LiveEventInner>> listSinglePageAsync(String resourceGroupName, String accountName) {
Expand Down Expand Up @@ -293,7 +293,7 @@ private Mono<PagedResponse<LiveEventInner>> listSinglePageAsync(String resourceG
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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 LiveEvent list result.
* @return liveEventListResult.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<PagedResponse<LiveEventInner>> listSinglePageAsync(
Expand Down Expand Up @@ -347,7 +347,7 @@ private Mono<PagedResponse<LiveEventInner>> listSinglePageAsync(
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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 LiveEvent list result.
* @return liveEventListResult.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux<LiveEventInner> listAsync(String resourceGroupName, String accountName) {
Expand All @@ -364,7 +364,7 @@ private PagedFlux<LiveEventInner> listAsync(String resourceGroupName, String acc
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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 LiveEvent list result.
* @return liveEventListResult.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux<LiveEventInner> listAsync(String resourceGroupName, String accountName, Context context) {
Expand All @@ -381,7 +381,7 @@ private PagedFlux<LiveEventInner> listAsync(String resourceGroupName, String acc
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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 LiveEvent list result.
* @return liveEventListResult.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable<LiveEventInner> list(String resourceGroupName, String accountName) {
Expand All @@ -397,7 +397,7 @@ public PagedIterable<LiveEventInner> list(String resourceGroupName, String accou
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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 LiveEvent list result.
* @return liveEventListResult.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable<LiveEventInner> list(String resourceGroupName, String accountName, Context context) {
Expand Down Expand Up @@ -2573,7 +2573,7 @@ public void reset(String resourceGroupName, String accountName, String liveEvent
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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 LiveEvent list result.
* @return liveEventListResult.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<PagedResponse<LiveEventInner>> listNextSinglePageAsync(String nextLink) {
Expand Down Expand Up @@ -2609,7 +2609,7 @@ private Mono<PagedResponse<LiveEventInner>> listNextSinglePageAsync(String nextL
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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 LiveEvent list result.
* @return liveEventListResult.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<PagedResponse<LiveEventInner>> listNextSinglePageAsync(String nextLink, Context context) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ Mono<Response<LiveOutputListResult>> listNext(
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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 LiveOutput list result.
* @return liveOutputListResult.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<PagedResponse<LiveOutputInner>> listSinglePageAsync(
Expand Down Expand Up @@ -218,7 +218,7 @@ private Mono<PagedResponse<LiveOutputInner>> listSinglePageAsync(
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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 LiveOutput list result.
* @return liveOutputListResult.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<PagedResponse<LiveOutputInner>> listSinglePageAsync(
Expand Down Expand Up @@ -277,7 +277,7 @@ private Mono<PagedResponse<LiveOutputInner>> listSinglePageAsync(
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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 LiveOutput list result.
* @return liveOutputListResult.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux<LiveOutputInner> listAsync(String resourceGroupName, String accountName, String liveEventName) {
Expand All @@ -296,7 +296,7 @@ private PagedFlux<LiveOutputInner> listAsync(String resourceGroupName, String ac
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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 LiveOutput list result.
* @return liveOutputListResult.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux<LiveOutputInner> listAsync(
Expand All @@ -315,7 +315,7 @@ private PagedFlux<LiveOutputInner> listAsync(
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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 LiveOutput list result.
* @return liveOutputListResult.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable<LiveOutputInner> list(String resourceGroupName, String accountName, String liveEventName) {
Expand All @@ -332,7 +332,7 @@ public PagedIterable<LiveOutputInner> list(String resourceGroupName, String acco
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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 LiveOutput list result.
* @return liveOutputListResult.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable<LiveOutputInner> list(
Expand Down Expand Up @@ -1142,7 +1142,7 @@ public void delete(
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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 LiveOutput list result.
* @return liveOutputListResult.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<PagedResponse<LiveOutputInner>> listNextSinglePageAsync(String nextLink) {
Expand Down Expand Up @@ -1178,7 +1178,7 @@ private Mono<PagedResponse<LiveOutputInner>> listNextSinglePageAsync(String next
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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 LiveOutput list result.
* @return liveOutputListResult.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<PagedResponse<LiveOutputInner>> listNextSinglePageAsync(String nextLink, Context context) {
Expand Down
Loading