Skip to content

Commit

Permalink
CodeGen from PR 30578 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge 9f730fd52e48c9e604f212e0e69481df27c1fa99 into 63c41aa20e38fe6d2ddd1a367b4fe57e8b601c34
  • Loading branch information
SDKAuto committed Oct 9, 2024
1 parent 3dd2243 commit f36e729
Show file tree
Hide file tree
Showing 12 changed files with 35 additions and 38 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Release History

## 1.0.0-beta.2 (Unreleased)
## 1.0.0-beta.1 (2024-10-09)

- Azure Resource Manager Compute Schedule client library for Java. This package contains Microsoft Azure SDK for Compute Schedule Management SDK. Microsoft.ComputeSchedule Resource Provider management API. 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 @@ -32,7 +32,7 @@ Various documentation is available to help you get started
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-computeschedule</artifactId>
<version>1.0.0-beta.1</version>
<version>1.0.0-beta.2</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
17 changes: 6 additions & 11 deletions sdk/computeschedule/azure-resourcemanager-computeschedule/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,9 @@
<jacoco.min.linecoverage>0</jacoco.min.linecoverage>
<jacoco.min.branchcoverage>0</jacoco.min.branchcoverage>
<revapi.skip>true</revapi.skip>
<spotless.skip>false</spotless.skip>
</properties>
<dependencies>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-json</artifactId>
<version>1.3.0</version> <!-- {x-version-update;com.azure:azure-json;dependency} -->
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core</artifactId>
Expand All @@ -68,18 +64,17 @@
<artifactId>azure-core-test</artifactId>
<version>1.27.0-beta.2</version> <!-- {x-version-update;com.azure:azure-core-test;dependency} -->
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>com.azure</groupId>
<artifactId>azure-core-http-jdk-httpclient</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-identity</artifactId>
<version>1.14.0</version> <!-- {x-version-update;com.azure:azure-identity;dependency} -->
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-json</artifactId>
<version>1.3.0</version> <!-- {x-version-update;com.azure:azure-json;dependency} -->
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public final class CancelOperationsRequest implements JsonSerializable<CancelOpe
private List<String> operationIds;

/*
* Correlationid item
* CorrelationId item
*/
private String correlationid;

Expand Down Expand Up @@ -55,7 +55,7 @@ public CancelOperationsRequest withOperationIds(List<String> operationIds) {
}

/**
* Get the correlationid property: Correlationid item.
* Get the correlationid property: CorrelationId item.
*
* @return the correlationid value.
*/
Expand All @@ -64,7 +64,7 @@ public String correlationid() {
}

/**
* Set the correlationid property: Correlationid item.
* Set the correlationid property: CorrelationId item.
*
* @param correlationid the correlationid value to set.
* @return the CancelOperationsRequest object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public final class ExecuteDeallocateRequest implements JsonSerializable<ExecuteD
private Resources resources;

/*
* Correlationid item
* CorrelationId item
*/
private String correlationid;

Expand Down Expand Up @@ -79,7 +79,7 @@ public ExecuteDeallocateRequest withResources(Resources resources) {
}

/**
* Get the correlationid property: Correlationid item.
* Get the correlationid property: CorrelationId item.
*
* @return the correlationid value.
*/
Expand All @@ -88,7 +88,7 @@ public String correlationid() {
}

/**
* Set the correlationid property: Correlationid item.
* Set the correlationid property: CorrelationId item.
*
* @param correlationid the correlationid value to set.
* @return the ExecuteDeallocateRequest object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public final class ExecuteHibernateRequest implements JsonSerializable<ExecuteHi
private Resources resources;

/*
* Correlationid item
* CorrelationId item
*/
private String correlationid;

Expand Down Expand Up @@ -79,7 +79,7 @@ public ExecuteHibernateRequest withResources(Resources resources) {
}

/**
* Get the correlationid property: Correlationid item.
* Get the correlationid property: CorrelationId item.
*
* @return the correlationid value.
*/
Expand All @@ -88,7 +88,7 @@ public String correlationid() {
}

/**
* Set the correlationid property: Correlationid item.
* Set the correlationid property: CorrelationId item.
*
* @param correlationid the correlationid value to set.
* @return the ExecuteHibernateRequest object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public final class ExecuteStartRequest implements JsonSerializable<ExecuteStartR
private Resources resources;

/*
* Correlationid item
* CorrelationId item
*/
private String correlationid;

Expand Down Expand Up @@ -79,7 +79,7 @@ public ExecuteStartRequest withResources(Resources resources) {
}

/**
* Get the correlationid property: Correlationid item.
* Get the correlationid property: CorrelationId item.
*
* @return the correlationid value.
*/
Expand All @@ -88,7 +88,7 @@ public String correlationid() {
}

/**
* Set the correlationid property: Correlationid item.
* Set the correlationid property: CorrelationId item.
*
* @param correlationid the correlationid value to set.
* @return the ExecuteStartRequest object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public final class GetOperationStatusRequest implements JsonSerializable<GetOper
private List<String> operationIds;

/*
* Correlationid item
* CorrelationId item
*/
private String correlationid;

Expand Down Expand Up @@ -55,7 +55,7 @@ public GetOperationStatusRequest withOperationIds(List<String> operationIds) {
}

/**
* Get the correlationid property: Correlationid item.
* Get the correlationid property: CorrelationId item.
*
* @return the correlationid value.
*/
Expand All @@ -64,7 +64,7 @@ public String correlationid() {
}

/**
* Set the correlationid property: Correlationid item.
* Set the correlationid property: CorrelationId item.
*
* @param correlationid the correlationid value to set.
* @return the GetOperationStatusRequest object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public final class SubmitDeallocateRequest implements JsonSerializable<SubmitDea
private Resources resources;

/*
* Correlationid item
* CorrelationId item
*/
private String correlationid;

Expand Down Expand Up @@ -104,7 +104,7 @@ public SubmitDeallocateRequest withResources(Resources resources) {
}

/**
* Get the correlationid property: Correlationid item.
* Get the correlationid property: CorrelationId item.
*
* @return the correlationid value.
*/
Expand All @@ -113,7 +113,7 @@ public String correlationid() {
}

/**
* Set the correlationid property: Correlationid item.
* Set the correlationid property: CorrelationId item.
*
* @param correlationid the correlationid value to set.
* @return the SubmitDeallocateRequest object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public final class SubmitHibernateRequest implements JsonSerializable<SubmitHibe
private Resources resources;

/*
* Correlationid item
* CorrelationId item
*/
private String correlationid;

Expand Down Expand Up @@ -104,7 +104,7 @@ public SubmitHibernateRequest withResources(Resources resources) {
}

/**
* Get the correlationid property: Correlationid item.
* Get the correlationid property: CorrelationId item.
*
* @return the correlationid value.
*/
Expand All @@ -113,7 +113,7 @@ public String correlationid() {
}

/**
* Set the correlationid property: Correlationid item.
* Set the correlationid property: CorrelationId item.
*
* @param correlationid the correlationid value to set.
* @return the SubmitHibernateRequest object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public final class SubmitStartRequest implements JsonSerializable<SubmitStartReq
private Resources resources;

/*
* Correlationid item
* CorrelationId item
*/
private String correlationid;

Expand Down Expand Up @@ -104,7 +104,7 @@ public SubmitStartRequest withResources(Resources resources) {
}

/**
* Get the correlationid property: Correlationid item.
* Get the correlationid property: CorrelationId item.
*
* @return the correlationid value.
*/
Expand All @@ -113,7 +113,7 @@ public String correlationid() {
}

/**
* Set the correlationid property: Correlationid item.
* Set the correlationid property: CorrelationId item.
*
* @param correlationid the correlationid value to set.
* @return the SubmitStartRequest object itself.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
directory: specification/computeschedule/ComputeSchedule.Management
commit: d79d73bea550b643c312dde6a7e817840c1ac914
commit: 9c243d7f39e96402c94facc2ceb591e13a4f62b4
repo: Azure/azure-rest-api-specs
additionalDirectories:

0 comments on commit f36e729

Please sign in to comment.