Skip to content

Commit

Permalink
[Automation] Generate Fluent Lite from Swagger edgeorder#package-2021…
Browse files Browse the repository at this point in the history
…-12 (#43669)
  • Loading branch information
azure-sdk authored Jan 2, 2025
1 parent a777661 commit 01781ec
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 75 deletions.
2 changes: 1 addition & 1 deletion eng/versioning/version_client.txt
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ com.azure.resourcemanager:azure-resourcemanager-dataprotection;1.3.0;1.4.0-beta.
com.azure.resourcemanager:azure-resourcemanager-desktopvirtualization;1.2.0;1.3.0-beta.1
com.azure.resourcemanager:azure-resourcemanager-loadtesting;1.1.0;1.2.0-beta.1
com.azure.resourcemanager:azure-resourcemanager-automanage;1.0.0-beta.2;1.0.0-beta.3
com.azure.resourcemanager:azure-resourcemanager-edgeorder;1.0.0-beta.2;1.0.0-beta.3
com.azure.resourcemanager:azure-resourcemanager-edgeorder;1.0.0-beta.2;1.0.0
com.azure.resourcemanager:azure-resourcemanager-securityinsights;1.0.0-beta.5;1.0.0-beta.6
com.azure.resourcemanager:azure-resourcemanager-oep;1.0.0-beta.2;1.0.0-beta.3
com.azure.resourcemanager:azure-resourcemanager-dnsresolver;1.0.0;1.1.0-beta.1
Expand Down
14 changes: 10 additions & 4 deletions sdk/edgeorder/azure-resourcemanager-edgeorder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
# Release History

## 1.0.0-beta.3 (Unreleased)
## 1.0.0 (2025-01-02)

### Features Added
- Azure Resource Manager EdgeOrder client library for Java. This package contains Microsoft Azure SDK for EdgeOrder Management SDK. Edge Order API's. Package tag package-2021-12. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).

### Breaking Changes

### Bugs Fixed
#### `models.Pav2MeterDetails` was modified

* `chargingType()` was removed
* `multiplier()` was removed

#### `models.PurchaseMeterDetails` was modified

### Other Changes
* `chargingType()` was removed
* `multiplier()` was removed

## 1.0.0-beta.2 (2024-10-06)

Expand Down
2 changes: 1 addition & 1 deletion sdk/edgeorder/azure-resourcemanager-edgeorder/README.md
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-edgeorder</artifactId>
<version>1.0.0-beta.2</version>
<version>1.0.0</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
4 changes: 2 additions & 2 deletions sdk/edgeorder/azure-resourcemanager-edgeorder/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-edgeorder</artifactId>
<version>1.0.0-beta.3</version> <!-- {x-version-update;com.azure.resourcemanager:azure-resourcemanager-edgeorder;current} -->
<version>1.0.0</version> <!-- {x-version-update;com.azure.resourcemanager:azure-resourcemanager-edgeorder;current} -->
<packaging>jar</packaging>

<name>Microsoft Azure SDK for EdgeOrder Management</name>
Expand Down Expand Up @@ -45,7 +45,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import com.azure.core.http.HttpPipelinePosition;
import com.azure.core.http.policy.AddDatePolicy;
import com.azure.core.http.policy.AddHeadersFromContextPolicy;
import com.azure.core.http.policy.BearerTokenAuthenticationPolicy;
import com.azure.core.http.policy.HttpLogOptions;
import com.azure.core.http.policy.HttpLoggingPolicy;
import com.azure.core.http.policy.HttpPipelinePolicy;
Expand All @@ -19,7 +20,6 @@
import com.azure.core.http.policy.RetryOptions;
import com.azure.core.http.policy.RetryPolicy;
import com.azure.core.http.policy.UserAgentPolicy;
import com.azure.core.management.http.policy.ArmChallengeAuthenticationPolicy;
import com.azure.core.management.profile.AzureProfile;
import com.azure.core.util.Configuration;
import com.azure.core.util.logging.ClientLogger;
Expand Down Expand Up @@ -205,7 +205,7 @@ public EdgeOrderManager authenticate(TokenCredential credential, AzureProfile pr
.append("-")
.append("com.azure.resourcemanager.edgeorder")
.append("/")
.append("1.0.0-beta.2");
.append("1.0.0");
if (!Configuration.getGlobalConfiguration().get("AZURE_TELEMETRY_DISABLED", false)) {
userAgentBuilder.append(" (")
.append(Configuration.getGlobalConfiguration().get("java.version"))
Expand Down Expand Up @@ -238,7 +238,7 @@ public EdgeOrderManager authenticate(TokenCredential credential, AzureProfile pr
HttpPolicyProviders.addBeforeRetryPolicies(policies);
policies.add(retryPolicy);
policies.add(new AddDatePolicy());
policies.add(new ArmChallengeAuthenticationPolicy(credential, scopes.toArray(new String[0])));
policies.add(new BearerTokenAuthenticationPolicy(credential, scopes.toArray(new String[0])));
policies.addAll(this.policies.stream()
.filter(p -> p.getPipelinePosition() == HttpPipelinePosition.PER_RETRY)
.collect(Collectors.toList()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,6 @@ public final class Pav2MeterDetails extends MeterDetails {
*/
private String meterGuid;

/*
* Charging type.
*/
private ChargingType chargingType;

/*
* Billing unit applicable for Pav2 billing
*/
private Double multiplier;

/**
* Creates an instance of Pav2MeterDetails class.
*/
Expand All @@ -60,26 +50,6 @@ public String meterGuid() {
return this.meterGuid;
}

/**
* Get the chargingType property: Charging type.
*
* @return the chargingType value.
*/
@Override
public ChargingType chargingType() {
return this.chargingType;
}

/**
* Get the multiplier property: Billing unit applicable for Pav2 billing.
*
* @return the multiplier value.
*/
@Override
public Double multiplier() {
return this.multiplier;
}

/**
* Validates the instance.
*
Expand Down Expand Up @@ -115,9 +85,9 @@ public static Pav2MeterDetails fromJson(JsonReader jsonReader) throws IOExceptio
reader.nextToken();

if ("multiplier".equals(fieldName)) {
deserializedPav2MeterDetails.multiplier = reader.getNullable(JsonReader::getDouble);
deserializedPav2MeterDetails.withMultiplier(reader.getNullable(JsonReader::getDouble));
} else if ("chargingType".equals(fieldName)) {
deserializedPav2MeterDetails.chargingType = ChargingType.fromString(reader.getString());
deserializedPav2MeterDetails.withChargingType(ChargingType.fromString(reader.getString()));
} else if ("billingType".equals(fieldName)) {
deserializedPav2MeterDetails.billingType = BillingType.fromString(reader.getString());
} else if ("meterGuid".equals(fieldName)) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,6 @@ public final class PurchaseMeterDetails extends MeterDetails {
*/
private String termId;

/*
* Charging type.
*/
private ChargingType chargingType;

/*
* Billing unit applicable for Pav2 billing
*/
private Double multiplier;

/**
* Creates an instance of PurchaseMeterDetails class.
*/
Expand Down Expand Up @@ -88,26 +78,6 @@ public String termId() {
return this.termId;
}

/**
* Get the chargingType property: Charging type.
*
* @return the chargingType value.
*/
@Override
public ChargingType chargingType() {
return this.chargingType;
}

/**
* Get the multiplier property: Billing unit applicable for Pav2 billing.
*
* @return the multiplier value.
*/
@Override
public Double multiplier() {
return this.multiplier;
}

/**
* Validates the instance.
*
Expand Down Expand Up @@ -143,9 +113,9 @@ public static PurchaseMeterDetails fromJson(JsonReader jsonReader) throws IOExce
reader.nextToken();

if ("multiplier".equals(fieldName)) {
deserializedPurchaseMeterDetails.multiplier = reader.getNullable(JsonReader::getDouble);
deserializedPurchaseMeterDetails.withMultiplier(reader.getNullable(JsonReader::getDouble));
} else if ("chargingType".equals(fieldName)) {
deserializedPurchaseMeterDetails.chargingType = ChargingType.fromString(reader.getString());
deserializedPurchaseMeterDetails.withChargingType(ChargingType.fromString(reader.getString()));
} else if ("billingType".equals(fieldName)) {
deserializedPurchaseMeterDetails.billingType = BillingType.fromString(reader.getString());
} else if ("productId".equals(fieldName)) {
Expand Down

0 comments on commit 01781ec

Please sign in to comment.