Skip to content

Commit

Permalink
CodeGen from PR 21989 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
add or modify files (Azure#21989)
  • Loading branch information
SDKAuto committed Jan 5, 2023
1 parent cdd7dd7 commit 2692ca6
Show file tree
Hide file tree
Showing 30 changed files with 2,867 additions and 3,078 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Release History

## 1.0.0-beta.5 (Unreleased)
## 1.0.0-beta.1 (2023-01-05)

- Azure Resource Manager MobileNetwork client library for Java. This package contains Microsoft Azure SDK for MobileNetwork Management SDK. The resources in this API specification will be used to manage attached data network resources in mobile network attached to a particular packet core instance. Package tag package-2022-11-01. 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-mobilenetwork</artifactId>
<version>1.0.0-beta.4</version>
<version>1.0.0-beta.5</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
542 changes: 268 additions & 274 deletions sdk/mobilenetwork/azure-resourcemanager-mobilenetwork/SAMPLE.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,11 @@
import com.azure.resourcemanager.mobilenetwork.implementation.MobileNetworkManagementClientBuilder;
import com.azure.resourcemanager.mobilenetwork.implementation.MobileNetworksImpl;
import com.azure.resourcemanager.mobilenetwork.implementation.OperationsImpl;
import com.azure.resourcemanager.mobilenetwork.implementation.PacketCoreControlPlaneOperationsImpl;
import com.azure.resourcemanager.mobilenetwork.implementation.PacketCoreControlPlaneVersionsImpl;
import com.azure.resourcemanager.mobilenetwork.implementation.PacketCoreControlPlanesImpl;
import com.azure.resourcemanager.mobilenetwork.implementation.PacketCoreDataPlanesImpl;
import com.azure.resourcemanager.mobilenetwork.implementation.ServicesImpl;
import com.azure.resourcemanager.mobilenetwork.implementation.SimGroupsImpl;
import com.azure.resourcemanager.mobilenetwork.implementation.SimOperationsImpl;
import com.azure.resourcemanager.mobilenetwork.implementation.SimPoliciesImpl;
import com.azure.resourcemanager.mobilenetwork.implementation.SimsImpl;
import com.azure.resourcemanager.mobilenetwork.implementation.SitesImpl;
Expand All @@ -44,13 +42,11 @@
import com.azure.resourcemanager.mobilenetwork.models.DataNetworks;
import com.azure.resourcemanager.mobilenetwork.models.MobileNetworks;
import com.azure.resourcemanager.mobilenetwork.models.Operations;
import com.azure.resourcemanager.mobilenetwork.models.PacketCoreControlPlaneOperations;
import com.azure.resourcemanager.mobilenetwork.models.PacketCoreControlPlaneVersions;
import com.azure.resourcemanager.mobilenetwork.models.PacketCoreControlPlanes;
import com.azure.resourcemanager.mobilenetwork.models.PacketCoreDataPlanes;
import com.azure.resourcemanager.mobilenetwork.models.Services;
import com.azure.resourcemanager.mobilenetwork.models.SimGroups;
import com.azure.resourcemanager.mobilenetwork.models.SimOperations;
import com.azure.resourcemanager.mobilenetwork.models.SimPolicies;
import com.azure.resourcemanager.mobilenetwork.models.Sims;
import com.azure.resourcemanager.mobilenetwork.models.Sites;
Expand All @@ -77,8 +73,6 @@ public final class MobileNetworkManager {

private PacketCoreControlPlanes packetCoreControlPlanes;

private PacketCoreControlPlaneOperations packetCoreControlPlaneOperations;

private PacketCoreControlPlaneVersions packetCoreControlPlaneVersions;

private PacketCoreDataPlanes packetCoreDataPlanes;
Expand All @@ -87,8 +81,6 @@ public final class MobileNetworkManager {

private Sims sims;

private SimOperations simOperations;

private SimGroups simGroups;

private SimPolicies simPolicies;
Expand Down Expand Up @@ -262,7 +254,7 @@ public MobileNetworkManager authenticate(TokenCredential credential, AzureProfil
.append("-")
.append("com.azure.resourcemanager.mobilenetwork")
.append("/")
.append("1.0.0-beta.4");
.append("1.0.0-beta.1");
if (!Configuration.getGlobalConfiguration().get("AZURE_TELEMETRY_DISABLED", false)) {
userAgentBuilder
.append(" (")
Expand Down Expand Up @@ -380,19 +372,6 @@ public PacketCoreControlPlanes packetCoreControlPlanes() {
return packetCoreControlPlanes;
}

/**
* Gets the resource collection API of PacketCoreControlPlaneOperations.
*
* @return Resource collection API of PacketCoreControlPlaneOperations.
*/
public PacketCoreControlPlaneOperations packetCoreControlPlaneOperations() {
if (this.packetCoreControlPlaneOperations == null) {
this.packetCoreControlPlaneOperations =
new PacketCoreControlPlaneOperationsImpl(clientObject.getPacketCoreControlPlaneOperations(), this);
}
return packetCoreControlPlaneOperations;
}

/**
* Gets the resource collection API of PacketCoreControlPlaneVersions.
*
Expand Down Expand Up @@ -442,18 +421,6 @@ public Sims sims() {
return sims;
}

/**
* Gets the resource collection API of SimOperations.
*
* @return Resource collection API of SimOperations.
*/
public SimOperations simOperations() {
if (this.simOperations == null) {
this.simOperations = new SimOperationsImpl(clientObject.getSimOperations(), this);
}
return simOperations;
}

/**
* Gets the resource collection API of SimGroups. It manages SimGroup.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,6 @@ public interface MobileNetworkManagementClient {
*/
PacketCoreControlPlanesClient getPacketCoreControlPlanes();

/**
* Gets the PacketCoreControlPlaneOperationsClient object to access its operations.
*
* @return the PacketCoreControlPlaneOperationsClient object.
*/
PacketCoreControlPlaneOperationsClient getPacketCoreControlPlaneOperations();

/**
* Gets the PacketCoreControlPlaneVersionsClient object to access its operations.
*
Expand Down Expand Up @@ -114,13 +107,6 @@ public interface MobileNetworkManagementClient {
*/
SimsClient getSims();

/**
* Gets the SimOperationsClient object to access its operations.
*
* @return the SimOperationsClient object.
*/
SimOperationsClient getSimOperations();

/**
* Gets the SimGroupsClient object to access its operations.
*
Expand Down

This file was deleted.

Loading

0 comments on commit 2692ca6

Please sign in to comment.