Skip to content
Merged
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
4 changes: 2 additions & 2 deletions recoveryservices/resource-manager/v2016_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-recoveryservices</artifactId>
<version>1.0.0-beta</version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@

package com.microsoft.azure.management.recoveryservices.v2016_06_01;

import rx.Completable;
import com.microsoft.azure.management.recoveryservices.v2016_06_01.implementation.RegisteredIdentitiesInner;
import com.microsoft.azure.arm.model.HasInner;
import rx.Observable;

/**
* Type representing RegisteredIdentities.
Expand All @@ -25,6 +25,6 @@ public interface RegisteredIdentities extends HasInner<RegisteredIdentitiesInner
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable for the request
*/
Observable<Void> deleteAsync(String resourceGroupName, String vaultName, String identityName);
Completable deleteAsync(String resourceGroupName, String vaultName, String identityName);

}
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

import com.microsoft.azure.arm.model.implementation.WrapperImpl;
import com.microsoft.azure.management.recoveryservices.v2016_06_01.RegisteredIdentities;
import rx.Observable;

class RegisteredIdentitiesImpl extends WrapperImpl<RegisteredIdentitiesInner> implements RegisteredIdentities {
private final RecoveryServicesManager manager;
Expand All @@ -25,8 +24,4 @@ public RecoveryServicesManager manager() {
return this.manager;
}

@Override
public Observable<Void> deleteAsync(String resourceGroupName, String vaultName, String identityName) {
return this.inner().deleteAsync(resourceGroupName, vaultName, identityName);
}
}