class com.microsoft.azure.management.resources.implementation.TagOperationsImpl implements com.microsoft.azure.management.resources.TagOperations
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.microsoft.azure.management.resources.implementation.TagOperationsImpl
  super_class: java.lang.Object
{
  private final com.microsoft.azure.management.resources.implementation.ResourceManager myManager;
    descriptor: Lcom/microsoft/azure/management/resources/implementation/ResourceManager;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(com.microsoft.azure.management.resources.implementation.ResourceManager);
    descriptor: (Lcom/microsoft/azure/management/resources/implementation/ResourceManager;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.management.resources.implementation.TagOperationsImpl this
        start local 1 // com.microsoft.azure.management.resources.implementation.ResourceManager resourceManager
         0: .line 26
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 27
            aload 0 /* this */
            aload 1 /* resourceManager */
            putfield com.microsoft.azure.management.resources.implementation.TagOperationsImpl.myManager:Lcom/microsoft/azure/management/resources/implementation/ResourceManager;
         2: .line 28
            return
        end local 1 // com.microsoft.azure.management.resources.implementation.ResourceManager resourceManager
        end local 0 // com.microsoft.azure.management.resources.implementation.TagOperationsImpl this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    3     0             this  Lcom/microsoft/azure/management/resources/implementation/TagOperationsImpl;
            0    3     1  resourceManager  Lcom/microsoft/azure/management/resources/implementation/ResourceManager;
    MethodParameters:
                 Name  Flags
      resourceManager  

  public com.microsoft.azure.management.resources.TagResource updateTags(com.microsoft.azure.management.resources.fluentcore.arm.models.Resource, java.util.Map<java.lang.String, java.lang.String>);
    descriptor: (Lcom/microsoft/azure/management/resources/fluentcore/arm/models/Resource;Ljava/util/Map;)Lcom/microsoft/azure/management/resources/TagResource;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.microsoft.azure.management.resources.implementation.TagOperationsImpl this
        start local 1 // com.microsoft.azure.management.resources.fluentcore.arm.models.Resource resource
        start local 2 // java.util.Map tags
         0: .line 32
            aload 0 /* this */
            aload 1 /* resource */
            aload 2 /* tags */
            invokevirtual com.microsoft.azure.management.resources.implementation.TagOperationsImpl.updateTagsAsync:(Lcom/microsoft/azure/management/resources/fluentcore/arm/models/Resource;Ljava/util/Map;)Lrx/Observable;
            invokevirtual rx.Observable.toBlocking:()Lrx/observables/BlockingObservable;
            invokevirtual rx.observables.BlockingObservable.last:()Ljava/lang/Object;
            checkcast com.microsoft.azure.management.resources.TagResource
            areturn
        end local 2 // java.util.Map tags
        end local 1 // com.microsoft.azure.management.resources.fluentcore.arm.models.Resource resource
        end local 0 // com.microsoft.azure.management.resources.implementation.TagOperationsImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lcom/microsoft/azure/management/resources/implementation/TagOperationsImpl;
            0    1     1  resource  Lcom/microsoft/azure/management/resources/fluentcore/arm/models/Resource;
            0    1     2      tags  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
    Signature: (Lcom/microsoft/azure/management/resources/fluentcore/arm/models/Resource;Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;)Lcom/microsoft/azure/management/resources/TagResource;
    MethodParameters:
          Name  Flags
      resource  
      tags      

  public com.microsoft.azure.management.resources.TagResource updateTags(java.lang.String, java.util.Map<java.lang.String, java.lang.String>);
    descriptor: (Ljava/lang/String;Ljava/util/Map;)Lcom/microsoft/azure/management/resources/TagResource;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.microsoft.azure.management.resources.implementation.TagOperationsImpl this
        start local 1 // java.lang.String resourceId
        start local 2 // java.util.Map tags
         0: .line 37
            aload 0 /* this */
            aload 1 /* resourceId */
            aload 2 /* tags */
            invokevirtual com.microsoft.azure.management.resources.implementation.TagOperationsImpl.updateTagsAsync:(Ljava/lang/String;Ljava/util/Map;)Lrx/Observable;
            invokevirtual rx.Observable.toBlocking:()Lrx/observables/BlockingObservable;
            invokevirtual rx.observables.BlockingObservable.last:()Ljava/lang/Object;
            checkcast com.microsoft.azure.management.resources.TagResource
            areturn
        end local 2 // java.util.Map tags
        end local 1 // java.lang.String resourceId
        end local 0 // com.microsoft.azure.management.resources.implementation.TagOperationsImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lcom/microsoft/azure/management/resources/implementation/TagOperationsImpl;
            0    1     1  resourceId  Ljava/lang/String;
            0    1     2        tags  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
    Signature: (Ljava/lang/String;Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;)Lcom/microsoft/azure/management/resources/TagResource;
    MethodParameters:
            Name  Flags
      resourceId  
      tags        

  public rx.Observable<com.microsoft.azure.management.resources.TagResource> updateTagsAsync(com.microsoft.azure.management.resources.fluentcore.arm.models.Resource, java.util.Map<java.lang.String, java.lang.String>);
    descriptor: (Lcom/microsoft/azure/management/resources/fluentcore/arm/models/Resource;Ljava/util/Map;)Lrx/Observable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.microsoft.azure.management.resources.implementation.TagOperationsImpl this
        start local 1 // com.microsoft.azure.management.resources.fluentcore.arm.models.Resource resource
        start local 2 // java.util.Map tags
         0: .line 42
            aload 0 /* this */
            aload 1 /* resource */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.microsoft.azure.management.resources.fluentcore.arm.models.Resource
            invokeinterface com.microsoft.azure.management.resources.fluentcore.arm.models.Resource.id:()Ljava/lang/String;
            aload 2 /* tags */
            invokevirtual com.microsoft.azure.management.resources.implementation.TagOperationsImpl.updateTagsAsync:(Ljava/lang/String;Ljava/util/Map;)Lrx/Observable;
            areturn
        end local 2 // java.util.Map tags
        end local 1 // com.microsoft.azure.management.resources.fluentcore.arm.models.Resource resource
        end local 0 // com.microsoft.azure.management.resources.implementation.TagOperationsImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lcom/microsoft/azure/management/resources/implementation/TagOperationsImpl;
            0    1     1  resource  Lcom/microsoft/azure/management/resources/fluentcore/arm/models/Resource;
            0    1     2      tags  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
    Signature: (Lcom/microsoft/azure/management/resources/fluentcore/arm/models/Resource;Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;)Lrx/Observable<Lcom/microsoft/azure/management/resources/TagResource;>;
    MethodParameters:
          Name  Flags
      resource  
      tags      

  public rx.Observable<com.microsoft.azure.management.resources.TagResource> updateTagsAsync(java.lang.String, java.util.Map<java.lang.String, java.lang.String>);
    descriptor: (Ljava/lang/String;Ljava/util/Map;)Lrx/Observable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // com.microsoft.azure.management.resources.implementation.TagOperationsImpl this
        start local 1 // java.lang.String resourceId
        start local 2 // java.util.Map tags
         0: .line 47
            new com.microsoft.azure.management.resources.TagsPatchResource
            dup
            invokespecial com.microsoft.azure.management.resources.TagsPatchResource.<init>:()V
         1: .line 48
            getstatic com.microsoft.azure.management.resources.TagsPatchOperation.REPLACE:Lcom/microsoft/azure/management/resources/TagsPatchOperation;
            invokevirtual com.microsoft.azure.management.resources.TagsPatchResource.withOperation:(Lcom/microsoft/azure/management/resources/TagsPatchOperation;)Lcom/microsoft/azure/management/resources/TagsPatchResource;
         2: .line 49
            new com.microsoft.azure.management.resources.Tags
            dup
            invokespecial com.microsoft.azure.management.resources.Tags.<init>:()V
            new java.util.TreeMap
            dup
            aload 2 /* tags */
            invokespecial java.util.TreeMap.<init>:(Ljava/util/Map;)V
            invokevirtual com.microsoft.azure.management.resources.Tags.withTags:(Ljava/util/Map;)Lcom/microsoft/azure/management/resources/Tags;
            invokevirtual com.microsoft.azure.management.resources.TagsPatchResource.withProperties:(Lcom/microsoft/azure/management/resources/Tags;)Lcom/microsoft/azure/management/resources/TagsPatchResource;
         3: .line 47
            astore 3 /* parameters */
        start local 3 // com.microsoft.azure.management.resources.TagsPatchResource parameters
         4: .line 50
            aload 0 /* this */
            invokevirtual com.microsoft.azure.management.resources.implementation.TagOperationsImpl.manager:()Lcom/microsoft/azure/management/resources/implementation/ResourceManager;
            invokevirtual com.microsoft.azure.management.resources.implementation.ResourceManager.inner:()Lcom/microsoft/azure/management/resources/implementation/ResourceManagementClientImpl;
            invokevirtual com.microsoft.azure.management.resources.implementation.ResourceManagementClientImpl.tagOperations:()Lcom/microsoft/azure/management/resources/implementation/TagOperationsInner;
         5: .line 51
            aload 1 /* resourceId */
            aload 3 /* parameters */
            invokevirtual com.microsoft.azure.management.resources.implementation.TagOperationsInner.updateAtScopeAsync:(Ljava/lang/String;Lcom/microsoft/azure/management/resources/TagsPatchResource;)Lrx/Observable;
         6: .line 52
            new com.microsoft.azure.management.resources.implementation.TagOperationsImpl$1
            dup
            aload 0 /* this */
            invokespecial com.microsoft.azure.management.resources.implementation.TagOperationsImpl$1.<init>:(Lcom/microsoft/azure/management/resources/implementation/TagOperationsImpl;)V
            invokevirtual rx.Observable.map:(Lrx/functions/Func1;)Lrx/Observable;
         7: .line 50
            areturn
        end local 3 // com.microsoft.azure.management.resources.TagsPatchResource parameters
        end local 2 // java.util.Map tags
        end local 1 // java.lang.String resourceId
        end local 0 // com.microsoft.azure.management.resources.implementation.TagOperationsImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    8     0        this  Lcom/microsoft/azure/management/resources/implementation/TagOperationsImpl;
            0    8     1  resourceId  Ljava/lang/String;
            0    8     2        tags  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
            4    8     3  parameters  Lcom/microsoft/azure/management/resources/TagsPatchResource;
    Signature: (Ljava/lang/String;Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;)Lrx/Observable<Lcom/microsoft/azure/management/resources/TagResource;>;
    MethodParameters:
            Name  Flags
      resourceId  
      tags        

  public com.microsoft.azure.management.resources.implementation.ResourceManager manager();
    descriptor: ()Lcom/microsoft/azure/management/resources/implementation/ResourceManager;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.management.resources.implementation.TagOperationsImpl this
         0: .line 62
            aload 0 /* this */
            getfield com.microsoft.azure.management.resources.implementation.TagOperationsImpl.myManager:Lcom/microsoft/azure/management/resources/implementation/ResourceManager;
            areturn
        end local 0 // com.microsoft.azure.management.resources.implementation.TagOperationsImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/management/resources/implementation/TagOperationsImpl;

  public java.lang.Object manager();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.microsoft.azure.management.resources.implementation.TagOperationsImpl.manager:()Lcom/microsoft/azure/management/resources/implementation/ResourceManager;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "TagOperationsImpl.java"
NestMembers:
  com.microsoft.azure.management.resources.implementation.TagOperationsImpl$1
InnerClasses:
  com.microsoft.azure.management.resources.implementation.TagOperationsImpl$1