Skip to content
This repository was archived by the owner on Aug 26, 2025. It is now read-only.
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
6 changes: 2 additions & 4 deletions netapp/resource-manager/v2019_06_01/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-parent</artifactId>
<version>1.1.0</version>
<relativePath>../../../pom.management.xml</relativePath>
<version>0.0.3-beta</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<artifactId>azure-mgmt-netapp</artifactId>
<version>1.0.0-beta</version>
Expand Down Expand Up @@ -71,8 +71,6 @@
<artifactId>azure-arm-client-runtime</artifactId>
<type>test-jar</type>
<scope>test</scope>
<!--Below version for test jar needs to be removed, this will be done as part of v1-runtime 1.6.7-->
<version>1.6.5</version>
</dependency>
</dependencies>
<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,10 @@ public CapacityPool call(CapacityPoolInner inner) {
public Observable<CapacityPool> getAsync(String resourceGroupName, String accountName, String poolName) {
PoolsInner client = this.inner();
return client.getAsync(resourceGroupName, accountName, poolName)
.flatMap(new Func1<CapacityPoolInner, Observable<CapacityPool>>() {
.map(new Func1<CapacityPoolInner, CapacityPool>() {
@Override
public Observable<CapacityPool> call(CapacityPoolInner inner) {
if (inner == null) {
return Observable.empty();
} else {
return Observable.just((CapacityPool)wrapModel(inner));
}
public CapacityPool call(CapacityPoolInner inner) {
return wrapModel(inner);
}
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,10 @@ public Snapshot call(SnapshotInner inner) {
public Observable<Snapshot> getAsync(String resourceGroupName, String accountName, String poolName, String volumeName, String snapshotName) {
SnapshotsInner client = this.inner();
return client.getAsync(resourceGroupName, accountName, poolName, volumeName, snapshotName)
.flatMap(new Func1<SnapshotInner, Observable<Snapshot>>() {
.map(new Func1<SnapshotInner, Snapshot>() {
@Override
public Observable<Snapshot> call(SnapshotInner inner) {
if (inner == null) {
return Observable.empty();
} else {
return Observable.just((Snapshot)wrapModel(inner));
}
public Snapshot call(SnapshotInner inner) {
return wrapModel(inner);
}
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,10 @@ public Volume call(VolumeInner inner) {
public Observable<Volume> getAsync(String resourceGroupName, String accountName, String poolName, String volumeName) {
VolumesInner client = this.inner();
return client.getAsync(resourceGroupName, accountName, poolName, volumeName)
.flatMap(new Func1<VolumeInner, Observable<Volume>>() {
.map(new Func1<VolumeInner, Volume>() {
@Override
public Observable<Volume> call(VolumeInner inner) {
if (inner == null) {
return Observable.empty();
} else {
return Observable.just((Volume)wrapModel(inner));
}
public Volume call(VolumeInner inner) {
return wrapModel(inner);
}
});
}
Expand Down