public class com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner
  super_class: java.lang.Object
{
  private com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$NetworkInterfaceTapConfigurationsService service;
    descriptor: Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner$NetworkInterfaceTapConfigurationsService;
    flags: (0x0002) ACC_PRIVATE

  private com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl client;
    descriptor: Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
    flags: (0x0002) ACC_PRIVATE

  public void <init>(retrofit2.Retrofit, com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl);
    descriptor: (Lretrofit2/Retrofit;Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // retrofit2.Retrofit retrofit
        start local 2 // com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl client
         0: .line 54
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 55
            aload 0 /* this */
            aload 1 /* retrofit */
            ldc Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner$NetworkInterfaceTapConfigurationsService;
            invokevirtual retrofit2.Retrofit.create:(Ljava/lang/Class;)Ljava/lang/Object;
            checkcast com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$NetworkInterfaceTapConfigurationsService
            putfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.service:Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner$NetworkInterfaceTapConfigurationsService;
         2: .line 56
            aload 0 /* this */
            aload 2 /* client */
            putfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
         3: .line 57
            return
        end local 2 // com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl client
        end local 1 // retrofit2.Retrofit retrofit
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    4     1  retrofit  Lretrofit2/Retrofit;
            0    4     2    client  Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
    MethodParameters:
          Name  Flags
      retrofit  
      client    

  public void delete(java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String resourceGroupName
        start local 2 // java.lang.String networkInterfaceName
        start local 3 // java.lang.String tapConfigurationName
         0: .line 105
            aload 0 /* this */
            aload 1 /* resourceGroupName */
            aload 2 /* networkInterfaceName */
            aload 3 /* tapConfigurationName */
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.deleteWithServiceResponseAsync:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
            invokevirtual rx.Observable.toBlocking:()Lrx/observables/BlockingObservable;
            invokevirtual rx.observables.BlockingObservable.last:()Ljava/lang/Object;
            checkcast com.microsoft.rest.ServiceResponse
            invokevirtual com.microsoft.rest.ServiceResponse.body:()Ljava/lang/Object;
            pop
         1: .line 106
            return
        end local 3 // java.lang.String tapConfigurationName
        end local 2 // java.lang.String networkInterfaceName
        end local 1 // java.lang.String resourceGroupName
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    2     0                  this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    2     1     resourceGroupName  Ljava/lang/String;
            0    2     2  networkInterfaceName  Ljava/lang/String;
            0    2     3  tapConfigurationName  Ljava/lang/String;
    MethodParameters:
                      Name  Flags
      resourceGroupName     
      networkInterfaceName  
      tapConfigurationName  

  public com.microsoft.rest.ServiceFuture<java.lang.Void> deleteAsync(java.lang.String, java.lang.String, java.lang.String, com.microsoft.rest.ServiceCallback<java.lang.Void>);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/rest/ServiceCallback;)Lcom/microsoft/rest/ServiceFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String resourceGroupName
        start local 2 // java.lang.String networkInterfaceName
        start local 3 // java.lang.String tapConfigurationName
        start local 4 // com.microsoft.rest.ServiceCallback serviceCallback
         0: .line 119
            aload 0 /* this */
            aload 1 /* resourceGroupName */
            aload 2 /* networkInterfaceName */
            aload 3 /* tapConfigurationName */
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.deleteWithServiceResponseAsync:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
            aload 4 /* serviceCallback */
            invokestatic com.microsoft.rest.ServiceFuture.fromResponse:(Lrx/Observable;Lcom/microsoft/rest/ServiceCallback;)Lcom/microsoft/rest/ServiceFuture;
            areturn
        end local 4 // com.microsoft.rest.ServiceCallback serviceCallback
        end local 3 // java.lang.String tapConfigurationName
        end local 2 // java.lang.String networkInterfaceName
        end local 1 // java.lang.String resourceGroupName
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    1     0                  this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    1     1     resourceGroupName  Ljava/lang/String;
            0    1     2  networkInterfaceName  Ljava/lang/String;
            0    1     3  tapConfigurationName  Ljava/lang/String;
            0    1     4       serviceCallback  Lcom/microsoft/rest/ServiceCallback<Ljava/lang/Void;>;
    Signature: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/rest/ServiceCallback<Ljava/lang/Void;>;)Lcom/microsoft/rest/ServiceFuture<Ljava/lang/Void;>;
    MethodParameters:
                      Name  Flags
      resourceGroupName     
      networkInterfaceName  
      tapConfigurationName  
      serviceCallback       final

  public rx.Observable<java.lang.Void> deleteAsync(java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String resourceGroupName
        start local 2 // java.lang.String networkInterfaceName
        start local 3 // java.lang.String tapConfigurationName
         0: .line 132
            aload 0 /* this */
            aload 1 /* resourceGroupName */
            aload 2 /* networkInterfaceName */
            aload 3 /* tapConfigurationName */
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.deleteWithServiceResponseAsync:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$1
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$1.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;)V
            invokevirtual rx.Observable.map:(Lrx/functions/Func1;)Lrx/Observable;
            areturn
        end local 3 // java.lang.String tapConfigurationName
        end local 2 // java.lang.String networkInterfaceName
        end local 1 // java.lang.String resourceGroupName
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    1     0                  this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    1     1     resourceGroupName  Ljava/lang/String;
            0    1     2  networkInterfaceName  Ljava/lang/String;
            0    1     3  tapConfigurationName  Ljava/lang/String;
    Signature: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable<Ljava/lang/Void;>;
    MethodParameters:
                      Name  Flags
      resourceGroupName     
      networkInterfaceName  
      tapConfigurationName  

  public rx.Observable<com.microsoft.rest.ServiceResponse<java.lang.Void>> deleteWithServiceResponseAsync(java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=5, args_size=4
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String resourceGroupName
        start local 2 // java.lang.String networkInterfaceName
        start local 3 // java.lang.String tapConfigurationName
         0: .line 150
            aload 1 /* resourceGroupName */
            ifnonnull 2
         1: .line 151
            new java.lang.IllegalArgumentException
            dup
            ldc "Parameter resourceGroupName is required and cannot be null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 153
      StackMap locals:
      StackMap stack:
            aload 2 /* networkInterfaceName */
            ifnonnull 4
         3: .line 154
            new java.lang.IllegalArgumentException
            dup
            ldc "Parameter networkInterfaceName is required and cannot be null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 156
      StackMap locals:
      StackMap stack:
            aload 3 /* tapConfigurationName */
            ifnonnull 6
         5: .line 157
            new java.lang.IllegalArgumentException
            dup
            ldc "Parameter tapConfigurationName is required and cannot be null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 159
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.subscriptionId:()Ljava/lang/String;
            ifnonnull 8
         7: .line 160
            new java.lang.IllegalArgumentException
            dup
            ldc "Parameter this.client.subscriptionId() is required and cannot be null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 163
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.service:Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner$NetworkInterfaceTapConfigurationsService;
            aload 1 /* resourceGroupName */
            aload 2 /* networkInterfaceName */
            aload 3 /* tapConfigurationName */
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.subscriptionId:()Ljava/lang/String;
            ldc "2019-11-01"
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.acceptLanguage:()Ljava/lang/String;
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.userAgent:()Ljava/lang/String;
            invokeinterface com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$NetworkInterfaceTapConfigurationsService.delete:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
            astore 4 /* observable */
        start local 4 // rx.Observable observable
         9: .line 164
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.getAzureClient:()Lcom/microsoft/azure/AzureClient;
            aload 4 /* observable */
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$2
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$2.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;)V
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$2.getType:()Ljava/lang/reflect/Type;
            invokevirtual com.microsoft.azure.AzureClient.getPostOrDeleteResultAsync:(Lrx/Observable;Ljava/lang/reflect/Type;)Lrx/Observable;
            areturn
        end local 4 // rx.Observable observable
        end local 3 // java.lang.String tapConfigurationName
        end local 2 // java.lang.String networkInterfaceName
        end local 1 // java.lang.String resourceGroupName
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   10     0                  this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0   10     1     resourceGroupName  Ljava/lang/String;
            0   10     2  networkInterfaceName  Ljava/lang/String;
            0   10     3  tapConfigurationName  Ljava/lang/String;
            9   10     4            observable  Lrx/Observable<Lretrofit2/Response<Lokhttp3/ResponseBody;>;>;
    Signature: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable<Lcom/microsoft/rest/ServiceResponse<Ljava/lang/Void;>;>;
    MethodParameters:
                      Name  Flags
      resourceGroupName     
      networkInterfaceName  
      tapConfigurationName  

  public void beginDelete(java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String resourceGroupName
        start local 2 // java.lang.String networkInterfaceName
        start local 3 // java.lang.String tapConfigurationName
         0: .line 178
            aload 0 /* this */
            aload 1 /* resourceGroupName */
            aload 2 /* networkInterfaceName */
            aload 3 /* tapConfigurationName */
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.beginDeleteWithServiceResponseAsync:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
            invokevirtual rx.Observable.toBlocking:()Lrx/observables/BlockingObservable;
            invokevirtual rx.observables.BlockingObservable.single:()Ljava/lang/Object;
            checkcast com.microsoft.rest.ServiceResponse
            invokevirtual com.microsoft.rest.ServiceResponse.body:()Ljava/lang/Object;
            pop
         1: .line 179
            return
        end local 3 // java.lang.String tapConfigurationName
        end local 2 // java.lang.String networkInterfaceName
        end local 1 // java.lang.String resourceGroupName
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    2     0                  this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    2     1     resourceGroupName  Ljava/lang/String;
            0    2     2  networkInterfaceName  Ljava/lang/String;
            0    2     3  tapConfigurationName  Ljava/lang/String;
    MethodParameters:
                      Name  Flags
      resourceGroupName     
      networkInterfaceName  
      tapConfigurationName  

  public com.microsoft.rest.ServiceFuture<java.lang.Void> beginDeleteAsync(java.lang.String, java.lang.String, java.lang.String, com.microsoft.rest.ServiceCallback<java.lang.Void>);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/rest/ServiceCallback;)Lcom/microsoft/rest/ServiceFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String resourceGroupName
        start local 2 // java.lang.String networkInterfaceName
        start local 3 // java.lang.String tapConfigurationName
        start local 4 // com.microsoft.rest.ServiceCallback serviceCallback
         0: .line 192
            aload 0 /* this */
            aload 1 /* resourceGroupName */
            aload 2 /* networkInterfaceName */
            aload 3 /* tapConfigurationName */
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.beginDeleteWithServiceResponseAsync:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
            aload 4 /* serviceCallback */
            invokestatic com.microsoft.rest.ServiceFuture.fromResponse:(Lrx/Observable;Lcom/microsoft/rest/ServiceCallback;)Lcom/microsoft/rest/ServiceFuture;
            areturn
        end local 4 // com.microsoft.rest.ServiceCallback serviceCallback
        end local 3 // java.lang.String tapConfigurationName
        end local 2 // java.lang.String networkInterfaceName
        end local 1 // java.lang.String resourceGroupName
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    1     0                  this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    1     1     resourceGroupName  Ljava/lang/String;
            0    1     2  networkInterfaceName  Ljava/lang/String;
            0    1     3  tapConfigurationName  Ljava/lang/String;
            0    1     4       serviceCallback  Lcom/microsoft/rest/ServiceCallback<Ljava/lang/Void;>;
    Signature: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/rest/ServiceCallback<Ljava/lang/Void;>;)Lcom/microsoft/rest/ServiceFuture<Ljava/lang/Void;>;
    MethodParameters:
                      Name  Flags
      resourceGroupName     
      networkInterfaceName  
      tapConfigurationName  
      serviceCallback       final

  public rx.Observable<java.lang.Void> beginDeleteAsync(java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String resourceGroupName
        start local 2 // java.lang.String networkInterfaceName
        start local 3 // java.lang.String tapConfigurationName
         0: .line 205
            aload 0 /* this */
            aload 1 /* resourceGroupName */
            aload 2 /* networkInterfaceName */
            aload 3 /* tapConfigurationName */
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.beginDeleteWithServiceResponseAsync:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$3
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$3.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;)V
            invokevirtual rx.Observable.map:(Lrx/functions/Func1;)Lrx/Observable;
            areturn
        end local 3 // java.lang.String tapConfigurationName
        end local 2 // java.lang.String networkInterfaceName
        end local 1 // java.lang.String resourceGroupName
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    1     0                  this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    1     1     resourceGroupName  Ljava/lang/String;
            0    1     2  networkInterfaceName  Ljava/lang/String;
            0    1     3  tapConfigurationName  Ljava/lang/String;
    Signature: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable<Ljava/lang/Void;>;
    MethodParameters:
                      Name  Flags
      resourceGroupName     
      networkInterfaceName  
      tapConfigurationName  

  public rx.Observable<com.microsoft.rest.ServiceResponse<java.lang.Void>> beginDeleteWithServiceResponseAsync(java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=4, args_size=4
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String resourceGroupName
        start local 2 // java.lang.String networkInterfaceName
        start local 3 // java.lang.String tapConfigurationName
         0: .line 223
            aload 1 /* resourceGroupName */
            ifnonnull 2
         1: .line 224
            new java.lang.IllegalArgumentException
            dup
            ldc "Parameter resourceGroupName is required and cannot be null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 226
      StackMap locals:
      StackMap stack:
            aload 2 /* networkInterfaceName */
            ifnonnull 4
         3: .line 227
            new java.lang.IllegalArgumentException
            dup
            ldc "Parameter networkInterfaceName is required and cannot be null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 229
      StackMap locals:
      StackMap stack:
            aload 3 /* tapConfigurationName */
            ifnonnull 6
         5: .line 230
            new java.lang.IllegalArgumentException
            dup
            ldc "Parameter tapConfigurationName is required and cannot be null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 232
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.subscriptionId:()Ljava/lang/String;
            ifnonnull 8
         7: .line 233
            new java.lang.IllegalArgumentException
            dup
            ldc "Parameter this.client.subscriptionId() is required and cannot be null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 236
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.service:Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner$NetworkInterfaceTapConfigurationsService;
            aload 1 /* resourceGroupName */
            aload 2 /* networkInterfaceName */
            aload 3 /* tapConfigurationName */
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.subscriptionId:()Ljava/lang/String;
            ldc "2019-11-01"
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.acceptLanguage:()Ljava/lang/String;
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.userAgent:()Ljava/lang/String;
            invokeinterface com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$NetworkInterfaceTapConfigurationsService.beginDelete:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
         9: .line 237
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$4
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$4.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;)V
            invokevirtual rx.Observable.flatMap:(Lrx/functions/Func1;)Lrx/Observable;
        10: .line 236
            areturn
        end local 3 // java.lang.String tapConfigurationName
        end local 2 // java.lang.String networkInterfaceName
        end local 1 // java.lang.String resourceGroupName
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   11     0                  this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0   11     1     resourceGroupName  Ljava/lang/String;
            0   11     2  networkInterfaceName  Ljava/lang/String;
            0   11     3  tapConfigurationName  Ljava/lang/String;
    Signature: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable<Lcom/microsoft/rest/ServiceResponse<Ljava/lang/Void;>;>;
    MethodParameters:
                      Name  Flags
      resourceGroupName     
      networkInterfaceName  
      tapConfigurationName  

  private com.microsoft.rest.ServiceResponse<java.lang.Void> beginDeleteDelegate(retrofit2.Response<okhttp3.ResponseBody>);
    descriptor: (Lretrofit2/Response;)Lcom/microsoft/rest/ServiceResponse;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // retrofit2.Response response
         0: .line 251
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.restClient:()Lcom/microsoft/rest/RestClient;
            invokevirtual com.microsoft.rest.RestClient.responseBuilderFactory:()Lcom/microsoft/rest/protocol/ResponseBuilder$Factory;
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.serializerAdapter:()Lcom/microsoft/rest/protocol/SerializerAdapter;
            invokeinterface com.microsoft.rest.protocol.ResponseBuilder$Factory.newInstance:(Lcom/microsoft/rest/protocol/SerializerAdapter;)Lcom/microsoft/rest/protocol/ResponseBuilder;
         1: .line 252
            sipush 200
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$5
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$5.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;)V
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$5.getType:()Ljava/lang/reflect/Type;
            invokeinterface com.microsoft.rest.protocol.ResponseBuilder.register:(ILjava/lang/reflect/Type;)Lcom/microsoft/rest/protocol/ResponseBuilder;
         2: .line 253
            sipush 202
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$6
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$6.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;)V
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$6.getType:()Ljava/lang/reflect/Type;
            invokeinterface com.microsoft.rest.protocol.ResponseBuilder.register:(ILjava/lang/reflect/Type;)Lcom/microsoft/rest/protocol/ResponseBuilder;
         3: .line 254
            sipush 204
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$7
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$7.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;)V
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$7.getType:()Ljava/lang/reflect/Type;
            invokeinterface com.microsoft.rest.protocol.ResponseBuilder.register:(ILjava/lang/reflect/Type;)Lcom/microsoft/rest/protocol/ResponseBuilder;
         4: .line 255
            ldc Lcom/microsoft/azure/CloudException;
            invokeinterface com.microsoft.rest.protocol.ResponseBuilder.registerError:(Ljava/lang/Class;)Lcom/microsoft/rest/protocol/ResponseBuilder;
         5: .line 256
            aload 1 /* response */
            invokeinterface com.microsoft.rest.protocol.ResponseBuilder.build:(Lretrofit2/Response;)Lcom/microsoft/rest/ServiceResponse;
         6: .line 251
            areturn
        end local 1 // retrofit2.Response response
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    7     1  response  Lretrofit2/Response<Lokhttp3/ResponseBody;>;
    Exceptions:
      throws com.microsoft.azure.CloudException, java.io.IOException, java.lang.IllegalArgumentException
    Signature: (Lretrofit2/Response<Lokhttp3/ResponseBody;>;)Lcom/microsoft/rest/ServiceResponse<Ljava/lang/Void;>;
    MethodParameters:
          Name  Flags
      response  

  public com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner get(java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String resourceGroupName
        start local 2 // java.lang.String networkInterfaceName
        start local 3 // java.lang.String tapConfigurationName
         0: .line 271
            aload 0 /* this */
            aload 1 /* resourceGroupName */
            aload 2 /* networkInterfaceName */
            aload 3 /* tapConfigurationName */
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.getWithServiceResponseAsync:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
            invokevirtual rx.Observable.toBlocking:()Lrx/observables/BlockingObservable;
            invokevirtual rx.observables.BlockingObservable.single:()Ljava/lang/Object;
            checkcast com.microsoft.rest.ServiceResponse
            invokevirtual com.microsoft.rest.ServiceResponse.body:()Ljava/lang/Object;
            checkcast com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner
            areturn
        end local 3 // java.lang.String tapConfigurationName
        end local 2 // java.lang.String networkInterfaceName
        end local 1 // java.lang.String resourceGroupName
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    1     0                  this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    1     1     resourceGroupName  Ljava/lang/String;
            0    1     2  networkInterfaceName  Ljava/lang/String;
            0    1     3  tapConfigurationName  Ljava/lang/String;
    MethodParameters:
                      Name  Flags
      resourceGroupName     
      networkInterfaceName  
      tapConfigurationName  

  public com.microsoft.rest.ServiceFuture<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner> getAsync(java.lang.String, java.lang.String, java.lang.String, com.microsoft.rest.ServiceCallback<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner>);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/rest/ServiceCallback;)Lcom/microsoft/rest/ServiceFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String resourceGroupName
        start local 2 // java.lang.String networkInterfaceName
        start local 3 // java.lang.String tapConfigurationName
        start local 4 // com.microsoft.rest.ServiceCallback serviceCallback
         0: .line 285
            aload 0 /* this */
            aload 1 /* resourceGroupName */
            aload 2 /* networkInterfaceName */
            aload 3 /* tapConfigurationName */
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.getWithServiceResponseAsync:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
            aload 4 /* serviceCallback */
            invokestatic com.microsoft.rest.ServiceFuture.fromResponse:(Lrx/Observable;Lcom/microsoft/rest/ServiceCallback;)Lcom/microsoft/rest/ServiceFuture;
            areturn
        end local 4 // com.microsoft.rest.ServiceCallback serviceCallback
        end local 3 // java.lang.String tapConfigurationName
        end local 2 // java.lang.String networkInterfaceName
        end local 1 // java.lang.String resourceGroupName
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    1     0                  this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    1     1     resourceGroupName  Ljava/lang/String;
            0    1     2  networkInterfaceName  Ljava/lang/String;
            0    1     3  tapConfigurationName  Ljava/lang/String;
            0    1     4       serviceCallback  Lcom/microsoft/rest/ServiceCallback<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;
    Signature: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/rest/ServiceCallback<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;)Lcom/microsoft/rest/ServiceFuture<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;
    MethodParameters:
                      Name  Flags
      resourceGroupName     
      networkInterfaceName  
      tapConfigurationName  
      serviceCallback       final

  public rx.Observable<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner> getAsync(java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String resourceGroupName
        start local 2 // java.lang.String networkInterfaceName
        start local 3 // java.lang.String tapConfigurationName
         0: .line 298
            aload 0 /* this */
            aload 1 /* resourceGroupName */
            aload 2 /* networkInterfaceName */
            aload 3 /* tapConfigurationName */
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.getWithServiceResponseAsync:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$8
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$8.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;)V
            invokevirtual rx.Observable.map:(Lrx/functions/Func1;)Lrx/Observable;
            areturn
        end local 3 // java.lang.String tapConfigurationName
        end local 2 // java.lang.String networkInterfaceName
        end local 1 // java.lang.String resourceGroupName
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    1     0                  this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    1     1     resourceGroupName  Ljava/lang/String;
            0    1     2  networkInterfaceName  Ljava/lang/String;
            0    1     3  tapConfigurationName  Ljava/lang/String;
    Signature: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;
    MethodParameters:
                      Name  Flags
      resourceGroupName     
      networkInterfaceName  
      tapConfigurationName  

  public rx.Observable<com.microsoft.rest.ServiceResponse<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner>> getWithServiceResponseAsync(java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=4, args_size=4
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String resourceGroupName
        start local 2 // java.lang.String networkInterfaceName
        start local 3 // java.lang.String tapConfigurationName
         0: .line 316
            aload 1 /* resourceGroupName */
            ifnonnull 2
         1: .line 317
            new java.lang.IllegalArgumentException
            dup
            ldc "Parameter resourceGroupName is required and cannot be null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 319
      StackMap locals:
      StackMap stack:
            aload 2 /* networkInterfaceName */
            ifnonnull 4
         3: .line 320
            new java.lang.IllegalArgumentException
            dup
            ldc "Parameter networkInterfaceName is required and cannot be null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 322
      StackMap locals:
      StackMap stack:
            aload 3 /* tapConfigurationName */
            ifnonnull 6
         5: .line 323
            new java.lang.IllegalArgumentException
            dup
            ldc "Parameter tapConfigurationName is required and cannot be null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 325
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.subscriptionId:()Ljava/lang/String;
            ifnonnull 8
         7: .line 326
            new java.lang.IllegalArgumentException
            dup
            ldc "Parameter this.client.subscriptionId() is required and cannot be null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 329
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.service:Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner$NetworkInterfaceTapConfigurationsService;
            aload 1 /* resourceGroupName */
            aload 2 /* networkInterfaceName */
            aload 3 /* tapConfigurationName */
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.subscriptionId:()Ljava/lang/String;
            ldc "2019-11-01"
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.acceptLanguage:()Ljava/lang/String;
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.userAgent:()Ljava/lang/String;
            invokeinterface com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$NetworkInterfaceTapConfigurationsService.get:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
         9: .line 330
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$9
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$9.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;)V
            invokevirtual rx.Observable.flatMap:(Lrx/functions/Func1;)Lrx/Observable;
        10: .line 329
            areturn
        end local 3 // java.lang.String tapConfigurationName
        end local 2 // java.lang.String networkInterfaceName
        end local 1 // java.lang.String resourceGroupName
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   11     0                  this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0   11     1     resourceGroupName  Ljava/lang/String;
            0   11     2  networkInterfaceName  Ljava/lang/String;
            0   11     3  tapConfigurationName  Ljava/lang/String;
    Signature: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable<Lcom/microsoft/rest/ServiceResponse<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;>;
    MethodParameters:
                      Name  Flags
      resourceGroupName     
      networkInterfaceName  
      tapConfigurationName  

  private com.microsoft.rest.ServiceResponse<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner> getDelegate(retrofit2.Response<okhttp3.ResponseBody>);
    descriptor: (Lretrofit2/Response;)Lcom/microsoft/rest/ServiceResponse;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // retrofit2.Response response
         0: .line 344
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.restClient:()Lcom/microsoft/rest/RestClient;
            invokevirtual com.microsoft.rest.RestClient.responseBuilderFactory:()Lcom/microsoft/rest/protocol/ResponseBuilder$Factory;
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.serializerAdapter:()Lcom/microsoft/rest/protocol/SerializerAdapter;
            invokeinterface com.microsoft.rest.protocol.ResponseBuilder$Factory.newInstance:(Lcom/microsoft/rest/protocol/SerializerAdapter;)Lcom/microsoft/rest/protocol/ResponseBuilder;
         1: .line 345
            sipush 200
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$10
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$10.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;)V
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$10.getType:()Ljava/lang/reflect/Type;
            invokeinterface com.microsoft.rest.protocol.ResponseBuilder.register:(ILjava/lang/reflect/Type;)Lcom/microsoft/rest/protocol/ResponseBuilder;
         2: .line 346
            ldc Lcom/microsoft/azure/CloudException;
            invokeinterface com.microsoft.rest.protocol.ResponseBuilder.registerError:(Ljava/lang/Class;)Lcom/microsoft/rest/protocol/ResponseBuilder;
         3: .line 347
            aload 1 /* response */
            invokeinterface com.microsoft.rest.protocol.ResponseBuilder.build:(Lretrofit2/Response;)Lcom/microsoft/rest/ServiceResponse;
         4: .line 344
            areturn
        end local 1 // retrofit2.Response response
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    5     1  response  Lretrofit2/Response<Lokhttp3/ResponseBody;>;
    Exceptions:
      throws com.microsoft.azure.CloudException, java.io.IOException, java.lang.IllegalArgumentException
    Signature: (Lretrofit2/Response<Lokhttp3/ResponseBody;>;)Lcom/microsoft/rest/ServiceResponse<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;
    MethodParameters:
          Name  Flags
      response  

  public com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner createOrUpdate(java.lang.String, java.lang.String, java.lang.String, com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;)Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String resourceGroupName
        start local 2 // java.lang.String networkInterfaceName
        start local 3 // java.lang.String tapConfigurationName
        start local 4 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner tapConfigurationParameters
         0: .line 363
            aload 0 /* this */
            aload 1 /* resourceGroupName */
            aload 2 /* networkInterfaceName */
            aload 3 /* tapConfigurationName */
            aload 4 /* tapConfigurationParameters */
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.createOrUpdateWithServiceResponseAsync:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;)Lrx/Observable;
            invokevirtual rx.Observable.toBlocking:()Lrx/observables/BlockingObservable;
            invokevirtual rx.observables.BlockingObservable.last:()Ljava/lang/Object;
            checkcast com.microsoft.rest.ServiceResponse
            invokevirtual com.microsoft.rest.ServiceResponse.body:()Ljava/lang/Object;
            checkcast com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner
            areturn
        end local 4 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner tapConfigurationParameters
        end local 3 // java.lang.String tapConfigurationName
        end local 2 // java.lang.String networkInterfaceName
        end local 1 // java.lang.String resourceGroupName
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot                        Name  Signature
            0    1     0                        this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    1     1           resourceGroupName  Ljava/lang/String;
            0    1     2        networkInterfaceName  Ljava/lang/String;
            0    1     3        tapConfigurationName  Ljava/lang/String;
            0    1     4  tapConfigurationParameters  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;
    MethodParameters:
                            Name  Flags
      resourceGroupName           
      networkInterfaceName        
      tapConfigurationName        
      tapConfigurationParameters  

  public com.microsoft.rest.ServiceFuture<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner> createOrUpdateAsync(java.lang.String, java.lang.String, java.lang.String, com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner, com.microsoft.rest.ServiceCallback<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner>);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;Lcom/microsoft/rest/ServiceCallback;)Lcom/microsoft/rest/ServiceFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=6
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String resourceGroupName
        start local 2 // java.lang.String networkInterfaceName
        start local 3 // java.lang.String tapConfigurationName
        start local 4 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner tapConfigurationParameters
        start local 5 // com.microsoft.rest.ServiceCallback serviceCallback
         0: .line 378
            aload 0 /* this */
            aload 1 /* resourceGroupName */
            aload 2 /* networkInterfaceName */
            aload 3 /* tapConfigurationName */
            aload 4 /* tapConfigurationParameters */
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.createOrUpdateWithServiceResponseAsync:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;)Lrx/Observable;
            aload 5 /* serviceCallback */
            invokestatic com.microsoft.rest.ServiceFuture.fromResponse:(Lrx/Observable;Lcom/microsoft/rest/ServiceCallback;)Lcom/microsoft/rest/ServiceFuture;
            areturn
        end local 5 // com.microsoft.rest.ServiceCallback serviceCallback
        end local 4 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner tapConfigurationParameters
        end local 3 // java.lang.String tapConfigurationName
        end local 2 // java.lang.String networkInterfaceName
        end local 1 // java.lang.String resourceGroupName
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot                        Name  Signature
            0    1     0                        this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    1     1           resourceGroupName  Ljava/lang/String;
            0    1     2        networkInterfaceName  Ljava/lang/String;
            0    1     3        tapConfigurationName  Ljava/lang/String;
            0    1     4  tapConfigurationParameters  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;
            0    1     5             serviceCallback  Lcom/microsoft/rest/ServiceCallback<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;
    Signature: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;Lcom/microsoft/rest/ServiceCallback<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;)Lcom/microsoft/rest/ServiceFuture<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;
    MethodParameters:
                            Name  Flags
      resourceGroupName           
      networkInterfaceName        
      tapConfigurationName        
      tapConfigurationParameters  
      serviceCallback             final

  public rx.Observable<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner> createOrUpdateAsync(java.lang.String, java.lang.String, java.lang.String, com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;)Lrx/Observable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String resourceGroupName
        start local 2 // java.lang.String networkInterfaceName
        start local 3 // java.lang.String tapConfigurationName
        start local 4 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner tapConfigurationParameters
         0: .line 392
            aload 0 /* this */
            aload 1 /* resourceGroupName */
            aload 2 /* networkInterfaceName */
            aload 3 /* tapConfigurationName */
            aload 4 /* tapConfigurationParameters */
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.createOrUpdateWithServiceResponseAsync:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;)Lrx/Observable;
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$11
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$11.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;)V
            invokevirtual rx.Observable.map:(Lrx/functions/Func1;)Lrx/Observable;
            areturn
        end local 4 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner tapConfigurationParameters
        end local 3 // java.lang.String tapConfigurationName
        end local 2 // java.lang.String networkInterfaceName
        end local 1 // java.lang.String resourceGroupName
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot                        Name  Signature
            0    1     0                        this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    1     1           resourceGroupName  Ljava/lang/String;
            0    1     2        networkInterfaceName  Ljava/lang/String;
            0    1     3        tapConfigurationName  Ljava/lang/String;
            0    1     4  tapConfigurationParameters  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;
    Signature: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;)Lrx/Observable<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;
    MethodParameters:
                            Name  Flags
      resourceGroupName           
      networkInterfaceName        
      tapConfigurationName        
      tapConfigurationParameters  

  public rx.Observable<com.microsoft.rest.ServiceResponse<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner>> createOrUpdateWithServiceResponseAsync(java.lang.String, java.lang.String, java.lang.String, com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;)Lrx/Observable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=6, args_size=5
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String resourceGroupName
        start local 2 // java.lang.String networkInterfaceName
        start local 3 // java.lang.String tapConfigurationName
        start local 4 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner tapConfigurationParameters
         0: .line 411
            aload 1 /* resourceGroupName */
            ifnonnull 2
         1: .line 412
            new java.lang.IllegalArgumentException
            dup
            ldc "Parameter resourceGroupName is required and cannot be null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 414
      StackMap locals:
      StackMap stack:
            aload 2 /* networkInterfaceName */
            ifnonnull 4
         3: .line 415
            new java.lang.IllegalArgumentException
            dup
            ldc "Parameter networkInterfaceName is required and cannot be null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 417
      StackMap locals:
      StackMap stack:
            aload 3 /* tapConfigurationName */
            ifnonnull 6
         5: .line 418
            new java.lang.IllegalArgumentException
            dup
            ldc "Parameter tapConfigurationName is required and cannot be null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 420
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.subscriptionId:()Ljava/lang/String;
            ifnonnull 8
         7: .line 421
            new java.lang.IllegalArgumentException
            dup
            ldc "Parameter this.client.subscriptionId() is required and cannot be null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 423
      StackMap locals:
      StackMap stack:
            aload 4 /* tapConfigurationParameters */
            ifnonnull 10
         9: .line 424
            new java.lang.IllegalArgumentException
            dup
            ldc "Parameter tapConfigurationParameters is required and cannot be null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 426
      StackMap locals:
      StackMap stack:
            aload 4 /* tapConfigurationParameters */
            invokestatic com.microsoft.rest.Validator.validate:(Ljava/lang/Object;)V
        11: .line 428
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.service:Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner$NetworkInterfaceTapConfigurationsService;
            aload 1 /* resourceGroupName */
            aload 2 /* networkInterfaceName */
            aload 3 /* tapConfigurationName */
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.subscriptionId:()Ljava/lang/String;
            aload 4 /* tapConfigurationParameters */
            ldc "2019-11-01"
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.acceptLanguage:()Ljava/lang/String;
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.userAgent:()Ljava/lang/String;
            invokeinterface com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$NetworkInterfaceTapConfigurationsService.createOrUpdate:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
            astore 5 /* observable */
        start local 5 // rx.Observable observable
        12: .line 429
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.getAzureClient:()Lcom/microsoft/azure/AzureClient;
            aload 5 /* observable */
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$12
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$12.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;)V
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$12.getType:()Ljava/lang/reflect/Type;
            invokevirtual com.microsoft.azure.AzureClient.getPutOrPatchResultAsync:(Lrx/Observable;Ljava/lang/reflect/Type;)Lrx/Observable;
            areturn
        end local 5 // rx.Observable observable
        end local 4 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner tapConfigurationParameters
        end local 3 // java.lang.String tapConfigurationName
        end local 2 // java.lang.String networkInterfaceName
        end local 1 // java.lang.String resourceGroupName
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot                        Name  Signature
            0   13     0                        this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0   13     1           resourceGroupName  Ljava/lang/String;
            0   13     2        networkInterfaceName  Ljava/lang/String;
            0   13     3        tapConfigurationName  Ljava/lang/String;
            0   13     4  tapConfigurationParameters  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;
           12   13     5                  observable  Lrx/Observable<Lretrofit2/Response<Lokhttp3/ResponseBody;>;>;
    Signature: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;)Lrx/Observable<Lcom/microsoft/rest/ServiceResponse<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;>;
    MethodParameters:
                            Name  Flags
      resourceGroupName           
      networkInterfaceName        
      tapConfigurationName        
      tapConfigurationParameters  

  public com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner beginCreateOrUpdate(java.lang.String, java.lang.String, java.lang.String, com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;)Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String resourceGroupName
        start local 2 // java.lang.String networkInterfaceName
        start local 3 // java.lang.String tapConfigurationName
        start local 4 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner tapConfigurationParameters
         0: .line 445
            aload 0 /* this */
            aload 1 /* resourceGroupName */
            aload 2 /* networkInterfaceName */
            aload 3 /* tapConfigurationName */
            aload 4 /* tapConfigurationParameters */
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.beginCreateOrUpdateWithServiceResponseAsync:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;)Lrx/Observable;
            invokevirtual rx.Observable.toBlocking:()Lrx/observables/BlockingObservable;
            invokevirtual rx.observables.BlockingObservable.single:()Ljava/lang/Object;
            checkcast com.microsoft.rest.ServiceResponse
            invokevirtual com.microsoft.rest.ServiceResponse.body:()Ljava/lang/Object;
            checkcast com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner
            areturn
        end local 4 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner tapConfigurationParameters
        end local 3 // java.lang.String tapConfigurationName
        end local 2 // java.lang.String networkInterfaceName
        end local 1 // java.lang.String resourceGroupName
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot                        Name  Signature
            0    1     0                        this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    1     1           resourceGroupName  Ljava/lang/String;
            0    1     2        networkInterfaceName  Ljava/lang/String;
            0    1     3        tapConfigurationName  Ljava/lang/String;
            0    1     4  tapConfigurationParameters  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;
    MethodParameters:
                            Name  Flags
      resourceGroupName           
      networkInterfaceName        
      tapConfigurationName        
      tapConfigurationParameters  

  public com.microsoft.rest.ServiceFuture<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner> beginCreateOrUpdateAsync(java.lang.String, java.lang.String, java.lang.String, com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner, com.microsoft.rest.ServiceCallback<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner>);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;Lcom/microsoft/rest/ServiceCallback;)Lcom/microsoft/rest/ServiceFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=6
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String resourceGroupName
        start local 2 // java.lang.String networkInterfaceName
        start local 3 // java.lang.String tapConfigurationName
        start local 4 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner tapConfigurationParameters
        start local 5 // com.microsoft.rest.ServiceCallback serviceCallback
         0: .line 460
            aload 0 /* this */
            aload 1 /* resourceGroupName */
            aload 2 /* networkInterfaceName */
            aload 3 /* tapConfigurationName */
            aload 4 /* tapConfigurationParameters */
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.beginCreateOrUpdateWithServiceResponseAsync:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;)Lrx/Observable;
            aload 5 /* serviceCallback */
            invokestatic com.microsoft.rest.ServiceFuture.fromResponse:(Lrx/Observable;Lcom/microsoft/rest/ServiceCallback;)Lcom/microsoft/rest/ServiceFuture;
            areturn
        end local 5 // com.microsoft.rest.ServiceCallback serviceCallback
        end local 4 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner tapConfigurationParameters
        end local 3 // java.lang.String tapConfigurationName
        end local 2 // java.lang.String networkInterfaceName
        end local 1 // java.lang.String resourceGroupName
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot                        Name  Signature
            0    1     0                        this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    1     1           resourceGroupName  Ljava/lang/String;
            0    1     2        networkInterfaceName  Ljava/lang/String;
            0    1     3        tapConfigurationName  Ljava/lang/String;
            0    1     4  tapConfigurationParameters  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;
            0    1     5             serviceCallback  Lcom/microsoft/rest/ServiceCallback<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;
    Signature: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;Lcom/microsoft/rest/ServiceCallback<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;)Lcom/microsoft/rest/ServiceFuture<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;
    MethodParameters:
                            Name  Flags
      resourceGroupName           
      networkInterfaceName        
      tapConfigurationName        
      tapConfigurationParameters  
      serviceCallback             final

  public rx.Observable<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner> beginCreateOrUpdateAsync(java.lang.String, java.lang.String, java.lang.String, com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;)Lrx/Observable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String resourceGroupName
        start local 2 // java.lang.String networkInterfaceName
        start local 3 // java.lang.String tapConfigurationName
        start local 4 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner tapConfigurationParameters
         0: .line 474
            aload 0 /* this */
            aload 1 /* resourceGroupName */
            aload 2 /* networkInterfaceName */
            aload 3 /* tapConfigurationName */
            aload 4 /* tapConfigurationParameters */
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.beginCreateOrUpdateWithServiceResponseAsync:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;)Lrx/Observable;
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$13
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$13.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;)V
            invokevirtual rx.Observable.map:(Lrx/functions/Func1;)Lrx/Observable;
            areturn
        end local 4 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner tapConfigurationParameters
        end local 3 // java.lang.String tapConfigurationName
        end local 2 // java.lang.String networkInterfaceName
        end local 1 // java.lang.String resourceGroupName
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot                        Name  Signature
            0    1     0                        this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    1     1           resourceGroupName  Ljava/lang/String;
            0    1     2        networkInterfaceName  Ljava/lang/String;
            0    1     3        tapConfigurationName  Ljava/lang/String;
            0    1     4  tapConfigurationParameters  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;
    Signature: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;)Lrx/Observable<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;
    MethodParameters:
                            Name  Flags
      resourceGroupName           
      networkInterfaceName        
      tapConfigurationName        
      tapConfigurationParameters  

  public rx.Observable<com.microsoft.rest.ServiceResponse<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner>> beginCreateOrUpdateWithServiceResponseAsync(java.lang.String, java.lang.String, java.lang.String, com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;)Lrx/Observable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=5, args_size=5
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String resourceGroupName
        start local 2 // java.lang.String networkInterfaceName
        start local 3 // java.lang.String tapConfigurationName
        start local 4 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner tapConfigurationParameters
         0: .line 493
            aload 1 /* resourceGroupName */
            ifnonnull 2
         1: .line 494
            new java.lang.IllegalArgumentException
            dup
            ldc "Parameter resourceGroupName is required and cannot be null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 496
      StackMap locals:
      StackMap stack:
            aload 2 /* networkInterfaceName */
            ifnonnull 4
         3: .line 497
            new java.lang.IllegalArgumentException
            dup
            ldc "Parameter networkInterfaceName is required and cannot be null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 499
      StackMap locals:
      StackMap stack:
            aload 3 /* tapConfigurationName */
            ifnonnull 6
         5: .line 500
            new java.lang.IllegalArgumentException
            dup
            ldc "Parameter tapConfigurationName is required and cannot be null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 502
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.subscriptionId:()Ljava/lang/String;
            ifnonnull 8
         7: .line 503
            new java.lang.IllegalArgumentException
            dup
            ldc "Parameter this.client.subscriptionId() is required and cannot be null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 505
      StackMap locals:
      StackMap stack:
            aload 4 /* tapConfigurationParameters */
            ifnonnull 10
         9: .line 506
            new java.lang.IllegalArgumentException
            dup
            ldc "Parameter tapConfigurationParameters is required and cannot be null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 508
      StackMap locals:
      StackMap stack:
            aload 4 /* tapConfigurationParameters */
            invokestatic com.microsoft.rest.Validator.validate:(Ljava/lang/Object;)V
        11: .line 510
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.service:Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner$NetworkInterfaceTapConfigurationsService;
            aload 1 /* resourceGroupName */
            aload 2 /* networkInterfaceName */
            aload 3 /* tapConfigurationName */
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.subscriptionId:()Ljava/lang/String;
            aload 4 /* tapConfigurationParameters */
            ldc "2019-11-01"
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.acceptLanguage:()Ljava/lang/String;
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.userAgent:()Ljava/lang/String;
            invokeinterface com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$NetworkInterfaceTapConfigurationsService.beginCreateOrUpdate:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
        12: .line 511
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$14
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$14.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;)V
            invokevirtual rx.Observable.flatMap:(Lrx/functions/Func1;)Lrx/Observable;
        13: .line 510
            areturn
        end local 4 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner tapConfigurationParameters
        end local 3 // java.lang.String tapConfigurationName
        end local 2 // java.lang.String networkInterfaceName
        end local 1 // java.lang.String resourceGroupName
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot                        Name  Signature
            0   14     0                        this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0   14     1           resourceGroupName  Ljava/lang/String;
            0   14     2        networkInterfaceName  Ljava/lang/String;
            0   14     3        tapConfigurationName  Ljava/lang/String;
            0   14     4  tapConfigurationParameters  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;
    Signature: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;)Lrx/Observable<Lcom/microsoft/rest/ServiceResponse<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;>;
    MethodParameters:
                            Name  Flags
      resourceGroupName           
      networkInterfaceName        
      tapConfigurationName        
      tapConfigurationParameters  

  private com.microsoft.rest.ServiceResponse<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner> beginCreateOrUpdateDelegate(retrofit2.Response<okhttp3.ResponseBody>);
    descriptor: (Lretrofit2/Response;)Lcom/microsoft/rest/ServiceResponse;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // retrofit2.Response response
         0: .line 525
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.restClient:()Lcom/microsoft/rest/RestClient;
            invokevirtual com.microsoft.rest.RestClient.responseBuilderFactory:()Lcom/microsoft/rest/protocol/ResponseBuilder$Factory;
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.serializerAdapter:()Lcom/microsoft/rest/protocol/SerializerAdapter;
            invokeinterface com.microsoft.rest.protocol.ResponseBuilder$Factory.newInstance:(Lcom/microsoft/rest/protocol/SerializerAdapter;)Lcom/microsoft/rest/protocol/ResponseBuilder;
         1: .line 526
            sipush 200
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$15
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$15.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;)V
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$15.getType:()Ljava/lang/reflect/Type;
            invokeinterface com.microsoft.rest.protocol.ResponseBuilder.register:(ILjava/lang/reflect/Type;)Lcom/microsoft/rest/protocol/ResponseBuilder;
         2: .line 527
            sipush 201
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$16
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$16.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;)V
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$16.getType:()Ljava/lang/reflect/Type;
            invokeinterface com.microsoft.rest.protocol.ResponseBuilder.register:(ILjava/lang/reflect/Type;)Lcom/microsoft/rest/protocol/ResponseBuilder;
         3: .line 528
            ldc Lcom/microsoft/azure/CloudException;
            invokeinterface com.microsoft.rest.protocol.ResponseBuilder.registerError:(Ljava/lang/Class;)Lcom/microsoft/rest/protocol/ResponseBuilder;
         4: .line 529
            aload 1 /* response */
            invokeinterface com.microsoft.rest.protocol.ResponseBuilder.build:(Lretrofit2/Response;)Lcom/microsoft/rest/ServiceResponse;
         5: .line 525
            areturn
        end local 1 // retrofit2.Response response
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    6     1  response  Lretrofit2/Response<Lokhttp3/ResponseBody;>;
    Exceptions:
      throws com.microsoft.azure.CloudException, java.io.IOException, java.lang.IllegalArgumentException
    Signature: (Lretrofit2/Response<Lokhttp3/ResponseBody;>;)Lcom/microsoft/rest/ServiceResponse<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;
    MethodParameters:
          Name  Flags
      response  

  public com.microsoft.azure.PagedList<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner> list(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lcom/microsoft/azure/PagedList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String resourceGroupName
        start local 2 // java.lang.String networkInterfaceName
         0: .line 543
            aload 0 /* this */
            aload 1 /* resourceGroupName */
            aload 2 /* networkInterfaceName */
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.listSinglePageAsync:(Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
            invokevirtual rx.Observable.toBlocking:()Lrx/observables/BlockingObservable;
            invokevirtual rx.observables.BlockingObservable.single:()Ljava/lang/Object;
            checkcast com.microsoft.rest.ServiceResponse
            astore 3 /* response */
        start local 3 // com.microsoft.rest.ServiceResponse response
         1: .line 544
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$17
            dup
            aload 0 /* this */
            aload 3 /* response */
            invokevirtual com.microsoft.rest.ServiceResponse.body:()Ljava/lang/Object;
            checkcast com.microsoft.azure.Page
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$17.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;Lcom/microsoft/azure/Page;)V
            areturn
        end local 3 // com.microsoft.rest.ServiceResponse response
        end local 2 // java.lang.String networkInterfaceName
        end local 1 // java.lang.String resourceGroupName
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    2     0                  this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    2     1     resourceGroupName  Ljava/lang/String;
            0    2     2  networkInterfaceName  Ljava/lang/String;
            1    2     3              response  Lcom/microsoft/rest/ServiceResponse<Lcom/microsoft/azure/Page<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;>;
    Signature: (Ljava/lang/String;Ljava/lang/String;)Lcom/microsoft/azure/PagedList<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;
    MethodParameters:
                      Name  Flags
      resourceGroupName     final
      networkInterfaceName  final

  public com.microsoft.rest.ServiceFuture<java.util.List<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner>> listAsync(java.lang.String, java.lang.String, com.microsoft.azure.ListOperationCallback<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner>);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/azure/ListOperationCallback;)Lcom/microsoft/rest/ServiceFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String resourceGroupName
        start local 2 // java.lang.String networkInterfaceName
        start local 3 // com.microsoft.azure.ListOperationCallback serviceCallback
         0: .line 563
            aload 0 /* this */
            aload 1 /* resourceGroupName */
            aload 2 /* networkInterfaceName */
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.listSinglePageAsync:(Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
         1: .line 564
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$18
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$18.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;)V
         2: .line 570
            aload 3 /* serviceCallback */
         3: .line 562
            invokestatic com.microsoft.azure.AzureServiceFuture.fromPageResponse:(Lrx/Observable;Lrx/functions/Func1;Lcom/microsoft/azure/ListOperationCallback;)Lcom/microsoft/rest/ServiceFuture;
            areturn
        end local 3 // com.microsoft.azure.ListOperationCallback serviceCallback
        end local 2 // java.lang.String networkInterfaceName
        end local 1 // java.lang.String resourceGroupName
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    4     0                  this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    4     1     resourceGroupName  Ljava/lang/String;
            0    4     2  networkInterfaceName  Ljava/lang/String;
            0    4     3       serviceCallback  Lcom/microsoft/azure/ListOperationCallback<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;
    Signature: (Ljava/lang/String;Ljava/lang/String;Lcom/microsoft/azure/ListOperationCallback<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;)Lcom/microsoft/rest/ServiceFuture<Ljava/util/List<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;>;
    MethodParameters:
                      Name  Flags
      resourceGroupName     final
      networkInterfaceName  final
      serviceCallback       final

  public rx.Observable<com.microsoft.azure.Page<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner>> listAsync(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String resourceGroupName
        start local 2 // java.lang.String networkInterfaceName
         0: .line 582
            aload 0 /* this */
            aload 1 /* resourceGroupName */
            aload 2 /* networkInterfaceName */
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.listWithServiceResponseAsync:(Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
         1: .line 583
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$19
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$19.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;)V
            invokevirtual rx.Observable.map:(Lrx/functions/Func1;)Lrx/Observable;
         2: .line 582
            areturn
        end local 2 // java.lang.String networkInterfaceName
        end local 1 // java.lang.String resourceGroupName
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    3     0                  this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    3     1     resourceGroupName  Ljava/lang/String;
            0    3     2  networkInterfaceName  Ljava/lang/String;
    Signature: (Ljava/lang/String;Ljava/lang/String;)Lrx/Observable<Lcom/microsoft/azure/Page<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;>;
    MethodParameters:
                      Name  Flags
      resourceGroupName     final
      networkInterfaceName  final

  public rx.Observable<com.microsoft.rest.ServiceResponse<com.microsoft.azure.Page<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner>>> listWithServiceResponseAsync(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String resourceGroupName
        start local 2 // java.lang.String networkInterfaceName
         0: .line 600
            aload 0 /* this */
            aload 1 /* resourceGroupName */
            aload 2 /* networkInterfaceName */
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.listSinglePageAsync:(Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
         1: .line 601
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$20
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$20.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;)V
            invokevirtual rx.Observable.concatMap:(Lrx/functions/Func1;)Lrx/Observable;
         2: .line 600
            areturn
        end local 2 // java.lang.String networkInterfaceName
        end local 1 // java.lang.String resourceGroupName
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    3     0                  this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    3     1     resourceGroupName  Ljava/lang/String;
            0    3     2  networkInterfaceName  Ljava/lang/String;
    Signature: (Ljava/lang/String;Ljava/lang/String;)Lrx/Observable<Lcom/microsoft/rest/ServiceResponse<Lcom/microsoft/azure/Page<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;>;>;
    MethodParameters:
                      Name  Flags
      resourceGroupName     final
      networkInterfaceName  final

  public rx.Observable<com.microsoft.rest.ServiceResponse<com.microsoft.azure.Page<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner>>> listSinglePageAsync(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=3, args_size=3
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String resourceGroupName
        start local 2 // java.lang.String networkInterfaceName
         0: .line 622
            aload 1 /* resourceGroupName */
            ifnonnull 2
         1: .line 623
            new java.lang.IllegalArgumentException
            dup
            ldc "Parameter resourceGroupName is required and cannot be null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 625
      StackMap locals:
      StackMap stack:
            aload 2 /* networkInterfaceName */
            ifnonnull 4
         3: .line 626
            new java.lang.IllegalArgumentException
            dup
            ldc "Parameter networkInterfaceName is required and cannot be null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 628
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.subscriptionId:()Ljava/lang/String;
            ifnonnull 6
         5: .line 629
            new java.lang.IllegalArgumentException
            dup
            ldc "Parameter this.client.subscriptionId() is required and cannot be null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 632
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.service:Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner$NetworkInterfaceTapConfigurationsService;
            aload 1 /* resourceGroupName */
            aload 2 /* networkInterfaceName */
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.subscriptionId:()Ljava/lang/String;
            ldc "2019-11-01"
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.acceptLanguage:()Ljava/lang/String;
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.userAgent:()Ljava/lang/String;
            invokeinterface com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$NetworkInterfaceTapConfigurationsService.list:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
         7: .line 633
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$21
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$21.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;)V
            invokevirtual rx.Observable.flatMap:(Lrx/functions/Func1;)Lrx/Observable;
         8: .line 632
            areturn
        end local 2 // java.lang.String networkInterfaceName
        end local 1 // java.lang.String resourceGroupName
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    9     0                  this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    9     1     resourceGroupName  Ljava/lang/String;
            0    9     2  networkInterfaceName  Ljava/lang/String;
    Signature: (Ljava/lang/String;Ljava/lang/String;)Lrx/Observable<Lcom/microsoft/rest/ServiceResponse<Lcom/microsoft/azure/Page<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;>;>;
    MethodParameters:
                      Name  Flags
      resourceGroupName     final
      networkInterfaceName  final

  private com.microsoft.rest.ServiceResponse<com.microsoft.azure.management.network.implementation.PageImpl<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner>> listDelegate(retrofit2.Response<okhttp3.ResponseBody>);
    descriptor: (Lretrofit2/Response;)Lcom/microsoft/rest/ServiceResponse;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // retrofit2.Response response
         0: .line 647
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.restClient:()Lcom/microsoft/rest/RestClient;
            invokevirtual com.microsoft.rest.RestClient.responseBuilderFactory:()Lcom/microsoft/rest/protocol/ResponseBuilder$Factory;
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.serializerAdapter:()Lcom/microsoft/rest/protocol/SerializerAdapter;
            invokeinterface com.microsoft.rest.protocol.ResponseBuilder$Factory.newInstance:(Lcom/microsoft/rest/protocol/SerializerAdapter;)Lcom/microsoft/rest/protocol/ResponseBuilder;
         1: .line 648
            sipush 200
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$22
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$22.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;)V
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$22.getType:()Ljava/lang/reflect/Type;
            invokeinterface com.microsoft.rest.protocol.ResponseBuilder.register:(ILjava/lang/reflect/Type;)Lcom/microsoft/rest/protocol/ResponseBuilder;
         2: .line 649
            ldc Lcom/microsoft/azure/CloudException;
            invokeinterface com.microsoft.rest.protocol.ResponseBuilder.registerError:(Ljava/lang/Class;)Lcom/microsoft/rest/protocol/ResponseBuilder;
         3: .line 650
            aload 1 /* response */
            invokeinterface com.microsoft.rest.protocol.ResponseBuilder.build:(Lretrofit2/Response;)Lcom/microsoft/rest/ServiceResponse;
         4: .line 647
            areturn
        end local 1 // retrofit2.Response response
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    5     1  response  Lretrofit2/Response<Lokhttp3/ResponseBody;>;
    Exceptions:
      throws com.microsoft.azure.CloudException, java.io.IOException, java.lang.IllegalArgumentException
    Signature: (Lretrofit2/Response<Lokhttp3/ResponseBody;>;)Lcom/microsoft/rest/ServiceResponse<Lcom/microsoft/azure/management/network/implementation/PageImpl<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;>;
    MethodParameters:
          Name  Flags
      response  

  public com.microsoft.azure.PagedList<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner> listNext(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/microsoft/azure/PagedList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String nextPageLink
         0: .line 663
            aload 0 /* this */
            aload 1 /* nextPageLink */
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.listNextSinglePageAsync:(Ljava/lang/String;)Lrx/Observable;
            invokevirtual rx.Observable.toBlocking:()Lrx/observables/BlockingObservable;
            invokevirtual rx.observables.BlockingObservable.single:()Ljava/lang/Object;
            checkcast com.microsoft.rest.ServiceResponse
            astore 2 /* response */
        start local 2 // com.microsoft.rest.ServiceResponse response
         1: .line 664
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$23
            dup
            aload 0 /* this */
            aload 2 /* response */
            invokevirtual com.microsoft.rest.ServiceResponse.body:()Ljava/lang/Object;
            checkcast com.microsoft.azure.Page
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$23.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;Lcom/microsoft/azure/Page;)V
            areturn
        end local 2 // com.microsoft.rest.ServiceResponse response
        end local 1 // java.lang.String nextPageLink
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    2     1  nextPageLink  Ljava/lang/String;
            1    2     2      response  Lcom/microsoft/rest/ServiceResponse<Lcom/microsoft/azure/Page<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;>;
    Signature: (Ljava/lang/String;)Lcom/microsoft/azure/PagedList<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;
    MethodParameters:
              Name  Flags
      nextPageLink  final

  public com.microsoft.rest.ServiceFuture<java.util.List<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner>> listNextAsync(java.lang.String, com.microsoft.rest.ServiceFuture<java.util.List<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner>>, com.microsoft.azure.ListOperationCallback<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner>);
    descriptor: (Ljava/lang/String;Lcom/microsoft/rest/ServiceFuture;Lcom/microsoft/azure/ListOperationCallback;)Lcom/microsoft/rest/ServiceFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String nextPageLink
        start local 2 // com.microsoft.rest.ServiceFuture serviceFuture
        start local 3 // com.microsoft.azure.ListOperationCallback serviceCallback
         0: .line 683
            aload 0 /* this */
            aload 1 /* nextPageLink */
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.listNextSinglePageAsync:(Ljava/lang/String;)Lrx/Observable;
         1: .line 684
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$24
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$24.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;)V
         2: .line 690
            aload 3 /* serviceCallback */
         3: .line 682
            invokestatic com.microsoft.azure.AzureServiceFuture.fromPageResponse:(Lrx/Observable;Lrx/functions/Func1;Lcom/microsoft/azure/ListOperationCallback;)Lcom/microsoft/rest/ServiceFuture;
            areturn
        end local 3 // com.microsoft.azure.ListOperationCallback serviceCallback
        end local 2 // com.microsoft.rest.ServiceFuture serviceFuture
        end local 1 // java.lang.String nextPageLink
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    4     0             this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    4     1     nextPageLink  Ljava/lang/String;
            0    4     2    serviceFuture  Lcom/microsoft/rest/ServiceFuture<Ljava/util/List<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;>;
            0    4     3  serviceCallback  Lcom/microsoft/azure/ListOperationCallback<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;
    Signature: (Ljava/lang/String;Lcom/microsoft/rest/ServiceFuture<Ljava/util/List<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;>;Lcom/microsoft/azure/ListOperationCallback<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;)Lcom/microsoft/rest/ServiceFuture<Ljava/util/List<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;>;
    MethodParameters:
                 Name  Flags
      nextPageLink     final
      serviceFuture    final
      serviceCallback  final

  public rx.Observable<com.microsoft.azure.Page<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner>> listNextAsync(java.lang.String);
    descriptor: (Ljava/lang/String;)Lrx/Observable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String nextPageLink
         0: .line 701
            aload 0 /* this */
            aload 1 /* nextPageLink */
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.listNextWithServiceResponseAsync:(Ljava/lang/String;)Lrx/Observable;
         1: .line 702
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$25
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$25.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;)V
            invokevirtual rx.Observable.map:(Lrx/functions/Func1;)Lrx/Observable;
         2: .line 701
            areturn
        end local 1 // java.lang.String nextPageLink
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    3     1  nextPageLink  Ljava/lang/String;
    Signature: (Ljava/lang/String;)Lrx/Observable<Lcom/microsoft/azure/Page<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;>;
    MethodParameters:
              Name  Flags
      nextPageLink  final

  public rx.Observable<com.microsoft.rest.ServiceResponse<com.microsoft.azure.Page<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner>>> listNextWithServiceResponseAsync(java.lang.String);
    descriptor: (Ljava/lang/String;)Lrx/Observable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String nextPageLink
         0: .line 718
            aload 0 /* this */
            aload 1 /* nextPageLink */
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.listNextSinglePageAsync:(Ljava/lang/String;)Lrx/Observable;
         1: .line 719
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$26
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$26.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;)V
            invokevirtual rx.Observable.concatMap:(Lrx/functions/Func1;)Lrx/Observable;
         2: .line 718
            areturn
        end local 1 // java.lang.String nextPageLink
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    3     1  nextPageLink  Ljava/lang/String;
    Signature: (Ljava/lang/String;)Lrx/Observable<Lcom/microsoft/rest/ServiceResponse<Lcom/microsoft/azure/Page<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;>;>;
    MethodParameters:
              Name  Flags
      nextPageLink  final

  public rx.Observable<com.microsoft.rest.ServiceResponse<com.microsoft.azure.Page<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner>>> listNextSinglePageAsync(java.lang.String);
    descriptor: (Ljava/lang/String;)Lrx/Observable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // java.lang.String nextPageLink
         0: .line 739
            aload 1 /* nextPageLink */
            ifnonnull 2
         1: .line 740
            new java.lang.IllegalArgumentException
            dup
            ldc "Parameter nextPageLink is required and cannot be null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 742
      StackMap locals:
      StackMap stack:
            ldc "%s"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* nextPageLink */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            astore 2 /* nextUrl */
        start local 2 // java.lang.String nextUrl
         3: .line 743
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.service:Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner$NetworkInterfaceTapConfigurationsService;
            aload 2 /* nextUrl */
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.acceptLanguage:()Ljava/lang/String;
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.userAgent:()Ljava/lang/String;
            invokeinterface com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$NetworkInterfaceTapConfigurationsService.listNext:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lrx/Observable;
         4: .line 744
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$27
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$27.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;)V
            invokevirtual rx.Observable.flatMap:(Lrx/functions/Func1;)Lrx/Observable;
         5: .line 743
            areturn
        end local 2 // java.lang.String nextUrl
        end local 1 // java.lang.String nextPageLink
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    6     1  nextPageLink  Ljava/lang/String;
            3    6     2       nextUrl  Ljava/lang/String;
    Signature: (Ljava/lang/String;)Lrx/Observable<Lcom/microsoft/rest/ServiceResponse<Lcom/microsoft/azure/Page<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;>;>;
    MethodParameters:
              Name  Flags
      nextPageLink  final

  private com.microsoft.rest.ServiceResponse<com.microsoft.azure.management.network.implementation.PageImpl<com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationInner>> listNextDelegate(retrofit2.Response<okhttp3.ResponseBody>);
    descriptor: (Lretrofit2/Response;)Lcom/microsoft/rest/ServiceResponse;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
        start local 1 // retrofit2.Response response
         0: .line 758
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.restClient:()Lcom/microsoft/rest/RestClient;
            invokevirtual com.microsoft.rest.RestClient.responseBuilderFactory:()Lcom/microsoft/rest/protocol/ResponseBuilder$Factory;
            aload 0 /* this */
            getfield com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner.client:Lcom/microsoft/azure/management/network/implementation/NetworkManagementClientImpl;
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkManagementClientImpl.serializerAdapter:()Lcom/microsoft/rest/protocol/SerializerAdapter;
            invokeinterface com.microsoft.rest.protocol.ResponseBuilder$Factory.newInstance:(Lcom/microsoft/rest/protocol/SerializerAdapter;)Lcom/microsoft/rest/protocol/ResponseBuilder;
         1: .line 759
            sipush 200
            new com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$28
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$28.<init>:(Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;)V
            invokevirtual com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$28.getType:()Ljava/lang/reflect/Type;
            invokeinterface com.microsoft.rest.protocol.ResponseBuilder.register:(ILjava/lang/reflect/Type;)Lcom/microsoft/rest/protocol/ResponseBuilder;
         2: .line 760
            ldc Lcom/microsoft/azure/CloudException;
            invokeinterface com.microsoft.rest.protocol.ResponseBuilder.registerError:(Ljava/lang/Class;)Lcom/microsoft/rest/protocol/ResponseBuilder;
         3: .line 761
            aload 1 /* response */
            invokeinterface com.microsoft.rest.protocol.ResponseBuilder.build:(Lretrofit2/Response;)Lcom/microsoft/rest/ServiceResponse;
         4: .line 758
            areturn
        end local 1 // retrofit2.Response response
        end local 0 // com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationsInner;
            0    5     1  response  Lretrofit2/Response<Lokhttp3/ResponseBody;>;
    Exceptions:
      throws com.microsoft.azure.CloudException, java.io.IOException, java.lang.IllegalArgumentException
    Signature: (Lretrofit2/Response<Lokhttp3/ResponseBody;>;)Lcom/microsoft/rest/ServiceResponse<Lcom/microsoft/azure/management/network/implementation/PageImpl<Lcom/microsoft/azure/management/network/implementation/NetworkInterfaceTapConfigurationInner;>;>;
    MethodParameters:
          Name  Flags
      response  
}
SourceFile: "NetworkInterfaceTapConfigurationsInner.java"
NestMembers:
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$1  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$10  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$11  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$12  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$13  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$14  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$15  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$16  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$17  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$18  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$19  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$2  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$20  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$21  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$22  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$23  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$24  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$25  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$26  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$27  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$28  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$3  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$4  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$5  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$6  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$7  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$8  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$9  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$NetworkInterfaceTapConfigurationsService
InnerClasses:
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$1
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$10
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$11
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$12
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$13
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$14
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$15
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$16
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$17
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$18
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$19
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$2
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$20
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$21
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$22
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$23
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$24
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$25
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$26
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$27
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$28
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$3
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$4
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$5
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$6
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$7
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$8
  com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$9
  abstract NetworkInterfaceTapConfigurationsService = com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner$NetworkInterfaceTapConfigurationsService of com.microsoft.azure.management.network.implementation.NetworkInterfaceTapConfigurationsInner
  public abstract Factory = com.microsoft.rest.protocol.ResponseBuilder$Factory of com.microsoft.rest.protocol.ResponseBuilder