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-mobilenetwork] RAN Info Updated #3488

Closed
Closed
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,6 +1,8 @@
# Release History

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

- 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