public class com.microsoft.azure.management.monitor.MetricAlertResourcePatch
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.microsoft.azure.management.monitor.MetricAlertResourcePatch
  super_class: java.lang.Object
{
  private java.util.Map<java.lang.String, java.lang.String> tags;
    descriptor: Ljava/util/Map;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty(value = "tags")

  private java.lang.String description;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty(value = "properties.description", required = true)

  private int severity;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty(value = "properties.severity", required = true)

  private boolean enabled;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty(value = "properties.enabled", required = true)

  private java.util.List<java.lang.String> scopes;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty(value = "properties.scopes")

  private org.joda.time.Period evaluationFrequency;
    descriptor: Lorg/joda/time/Period;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty(value = "properties.evaluationFrequency", required = true)

  private org.joda.time.Period windowSize;
    descriptor: Lorg/joda/time/Period;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty(value = "properties.windowSize", required = true)

  private java.lang.String targetResourceType;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty(value = "properties.targetResourceType")

  private java.lang.String targetResourceRegion;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty(value = "properties.targetResourceRegion")

  private com.microsoft.azure.management.monitor.MetricAlertCriteria criteria;
    descriptor: Lcom/microsoft/azure/management/monitor/MetricAlertCriteria;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty(value = "properties.criteria", required = true)

  private java.lang.Boolean autoMitigate;
    descriptor: Ljava/lang/Boolean;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty(value = "properties.autoMitigate")

  private java.util.List<com.microsoft.azure.management.monitor.MetricAlertAction> actions;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Lcom/microsoft/azure/management/monitor/MetricAlertAction;>;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty(value = "properties.actions")

  private org.joda.time.DateTime lastUpdatedTime;
    descriptor: Lorg/joda/time/DateTime;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty(value = "properties.lastUpdatedTime", access = com.fasterxml.jackson.annotation.JsonProperty$Access.WRITE_ONLY:Lcom/fasterxml/jackson/annotation/JsonProperty$Access;)

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
         0: .line 22
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;

  public java.util.Map<java.lang.String, java.lang.String> tags();
    descriptor: ()Ljava/util/Map;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
         0: .line 114
            aload 0 /* this */
            getfield com.microsoft.azure.management.monitor.MetricAlertResourcePatch.tags:Ljava/util/Map;
            areturn
        end local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
    Signature: ()Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;

  public com.microsoft.azure.management.monitor.MetricAlertResourcePatch withTags(java.util.Map<java.lang.String, java.lang.String>);
    descriptor: (Ljava/util/Map;)Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
        start local 1 // java.util.Map tags
         0: .line 124
            aload 0 /* this */
            aload 1 /* tags */
            putfield com.microsoft.azure.management.monitor.MetricAlertResourcePatch.tags:Ljava/util/Map;
         1: .line 125
            aload 0 /* this */
            areturn
        end local 1 // java.util.Map tags
        end local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
            0    2     1  tags  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
    Signature: (Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;)Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
    MethodParameters:
      Name  Flags
      tags  

  public java.lang.String description();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
         0: .line 134
            aload 0 /* this */
            getfield com.microsoft.azure.management.monitor.MetricAlertResourcePatch.description:Ljava/lang/String;
            areturn
        end local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;

  public com.microsoft.azure.management.monitor.MetricAlertResourcePatch withDescription(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
        start local 1 // java.lang.String description
         0: .line 144
            aload 0 /* this */
            aload 1 /* description */
            putfield com.microsoft.azure.management.monitor.MetricAlertResourcePatch.description:Ljava/lang/String;
         1: .line 145
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String description
        end local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
            0    2     1  description  Ljava/lang/String;
    MethodParameters:
             Name  Flags
      description  

  public int severity();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
         0: .line 154
            aload 0 /* this */
            getfield com.microsoft.azure.management.monitor.MetricAlertResourcePatch.severity:I
            ireturn
        end local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;

  public com.microsoft.azure.management.monitor.MetricAlertResourcePatch withSeverity(int);
    descriptor: (I)Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
        start local 1 // int severity
         0: .line 164
            aload 0 /* this */
            iload 1 /* severity */
            putfield com.microsoft.azure.management.monitor.MetricAlertResourcePatch.severity:I
         1: .line 165
            aload 0 /* this */
            areturn
        end local 1 // int severity
        end local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
            0    2     1  severity  I
    MethodParameters:
          Name  Flags
      severity  

  public boolean enabled();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
         0: .line 174
            aload 0 /* this */
            getfield com.microsoft.azure.management.monitor.MetricAlertResourcePatch.enabled:Z
            ireturn
        end local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;

  public com.microsoft.azure.management.monitor.MetricAlertResourcePatch withEnabled(boolean);
    descriptor: (Z)Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
        start local 1 // boolean enabled
         0: .line 184
            aload 0 /* this */
            iload 1 /* enabled */
            putfield com.microsoft.azure.management.monitor.MetricAlertResourcePatch.enabled:Z
         1: .line 185
            aload 0 /* this */
            areturn
        end local 1 // boolean enabled
        end local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
            0    2     1  enabled  Z
    MethodParameters:
         Name  Flags
      enabled  

  public java.util.List<java.lang.String> scopes();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
         0: .line 194
            aload 0 /* this */
            getfield com.microsoft.azure.management.monitor.MetricAlertResourcePatch.scopes:Ljava/util/List;
            areturn
        end local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
    Signature: ()Ljava/util/List<Ljava/lang/String;>;

  public com.microsoft.azure.management.monitor.MetricAlertResourcePatch withScopes(java.util.List<java.lang.String>);
    descriptor: (Ljava/util/List;)Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
        start local 1 // java.util.List scopes
         0: .line 204
            aload 0 /* this */
            aload 1 /* scopes */
            putfield com.microsoft.azure.management.monitor.MetricAlertResourcePatch.scopes:Ljava/util/List;
         1: .line 205
            aload 0 /* this */
            areturn
        end local 1 // java.util.List scopes
        end local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
            0    2     1  scopes  Ljava/util/List<Ljava/lang/String;>;
    Signature: (Ljava/util/List<Ljava/lang/String;>;)Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
    MethodParameters:
        Name  Flags
      scopes  

  public org.joda.time.Period evaluationFrequency();
    descriptor: ()Lorg/joda/time/Period;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
         0: .line 214
            aload 0 /* this */
            getfield com.microsoft.azure.management.monitor.MetricAlertResourcePatch.evaluationFrequency:Lorg/joda/time/Period;
            areturn
        end local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;

  public com.microsoft.azure.management.monitor.MetricAlertResourcePatch withEvaluationFrequency(org.joda.time.Period);
    descriptor: (Lorg/joda/time/Period;)Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
        start local 1 // org.joda.time.Period evaluationFrequency
         0: .line 224
            aload 0 /* this */
            aload 1 /* evaluationFrequency */
            putfield com.microsoft.azure.management.monitor.MetricAlertResourcePatch.evaluationFrequency:Lorg/joda/time/Period;
         1: .line 225
            aload 0 /* this */
            areturn
        end local 1 // org.joda.time.Period evaluationFrequency
        end local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    2     0                 this  Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
            0    2     1  evaluationFrequency  Lorg/joda/time/Period;
    MethodParameters:
                     Name  Flags
      evaluationFrequency  

  public org.joda.time.Period windowSize();
    descriptor: ()Lorg/joda/time/Period;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
         0: .line 234
            aload 0 /* this */
            getfield com.microsoft.azure.management.monitor.MetricAlertResourcePatch.windowSize:Lorg/joda/time/Period;
            areturn
        end local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;

  public com.microsoft.azure.management.monitor.MetricAlertResourcePatch withWindowSize(org.joda.time.Period);
    descriptor: (Lorg/joda/time/Period;)Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
        start local 1 // org.joda.time.Period windowSize
         0: .line 244
            aload 0 /* this */
            aload 1 /* windowSize */
            putfield com.microsoft.azure.management.monitor.MetricAlertResourcePatch.windowSize:Lorg/joda/time/Period;
         1: .line 245
            aload 0 /* this */
            areturn
        end local 1 // org.joda.time.Period windowSize
        end local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
            0    2     1  windowSize  Lorg/joda/time/Period;
    MethodParameters:
            Name  Flags
      windowSize  

  public java.lang.String targetResourceType();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
         0: .line 254
            aload 0 /* this */
            getfield com.microsoft.azure.management.monitor.MetricAlertResourcePatch.targetResourceType:Ljava/lang/String;
            areturn
        end local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;

  public com.microsoft.azure.management.monitor.MetricAlertResourcePatch withTargetResourceType(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
        start local 1 // java.lang.String targetResourceType
         0: .line 264
            aload 0 /* this */
            aload 1 /* targetResourceType */
            putfield com.microsoft.azure.management.monitor.MetricAlertResourcePatch.targetResourceType:Ljava/lang/String;
         1: .line 265
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String targetResourceType
        end local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
            0    2     1  targetResourceType  Ljava/lang/String;
    MethodParameters:
                    Name  Flags
      targetResourceType  

  public java.lang.String targetResourceRegion();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
         0: .line 274
            aload 0 /* this */
            getfield com.microsoft.azure.management.monitor.MetricAlertResourcePatch.targetResourceRegion:Ljava/lang/String;
            areturn
        end local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;

  public com.microsoft.azure.management.monitor.MetricAlertResourcePatch withTargetResourceRegion(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
        start local 1 // java.lang.String targetResourceRegion
         0: .line 284
            aload 0 /* this */
            aload 1 /* targetResourceRegion */
            putfield com.microsoft.azure.management.monitor.MetricAlertResourcePatch.targetResourceRegion:Ljava/lang/String;
         1: .line 285
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String targetResourceRegion
        end local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    2     0                  this  Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
            0    2     1  targetResourceRegion  Ljava/lang/String;
    MethodParameters:
                      Name  Flags
      targetResourceRegion  

  public com.microsoft.azure.management.monitor.MetricAlertCriteria criteria();
    descriptor: ()Lcom/microsoft/azure/management/monitor/MetricAlertCriteria;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
         0: .line 294
            aload 0 /* this */
            getfield com.microsoft.azure.management.monitor.MetricAlertResourcePatch.criteria:Lcom/microsoft/azure/management/monitor/MetricAlertCriteria;
            areturn
        end local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;

  public com.microsoft.azure.management.monitor.MetricAlertResourcePatch withCriteria(com.microsoft.azure.management.monitor.MetricAlertCriteria);
    descriptor: (Lcom/microsoft/azure/management/monitor/MetricAlertCriteria;)Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
        start local 1 // com.microsoft.azure.management.monitor.MetricAlertCriteria criteria
         0: .line 304
            aload 0 /* this */
            aload 1 /* criteria */
            putfield com.microsoft.azure.management.monitor.MetricAlertResourcePatch.criteria:Lcom/microsoft/azure/management/monitor/MetricAlertCriteria;
         1: .line 305
            aload 0 /* this */
            areturn
        end local 1 // com.microsoft.azure.management.monitor.MetricAlertCriteria criteria
        end local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
            0    2     1  criteria  Lcom/microsoft/azure/management/monitor/MetricAlertCriteria;
    MethodParameters:
          Name  Flags
      criteria  

  public java.lang.Boolean autoMitigate();
    descriptor: ()Ljava/lang/Boolean;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
         0: .line 314
            aload 0 /* this */
            getfield com.microsoft.azure.management.monitor.MetricAlertResourcePatch.autoMitigate:Ljava/lang/Boolean;
            areturn
        end local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;

  public com.microsoft.azure.management.monitor.MetricAlertResourcePatch withAutoMitigate(java.lang.Boolean);
    descriptor: (Ljava/lang/Boolean;)Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
        start local 1 // java.lang.Boolean autoMitigate
         0: .line 324
            aload 0 /* this */
            aload 1 /* autoMitigate */
            putfield com.microsoft.azure.management.monitor.MetricAlertResourcePatch.autoMitigate:Ljava/lang/Boolean;
         1: .line 325
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Boolean autoMitigate
        end local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
            0    2     1  autoMitigate  Ljava/lang/Boolean;
    MethodParameters:
              Name  Flags
      autoMitigate  

  public java.util.List<com.microsoft.azure.management.monitor.MetricAlertAction> actions();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
         0: .line 334
            aload 0 /* this */
            getfield com.microsoft.azure.management.monitor.MetricAlertResourcePatch.actions:Ljava/util/List;
            areturn
        end local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
    Signature: ()Ljava/util/List<Lcom/microsoft/azure/management/monitor/MetricAlertAction;>;

  public com.microsoft.azure.management.monitor.MetricAlertResourcePatch withActions(java.util.List<com.microsoft.azure.management.monitor.MetricAlertAction>);
    descriptor: (Ljava/util/List;)Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
        start local 1 // java.util.List actions
         0: .line 344
            aload 0 /* this */
            aload 1 /* actions */
            putfield com.microsoft.azure.management.monitor.MetricAlertResourcePatch.actions:Ljava/util/List;
         1: .line 345
            aload 0 /* this */
            areturn
        end local 1 // java.util.List actions
        end local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
            0    2     1  actions  Ljava/util/List<Lcom/microsoft/azure/management/monitor/MetricAlertAction;>;
    Signature: (Ljava/util/List<Lcom/microsoft/azure/management/monitor/MetricAlertAction;>;)Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
    MethodParameters:
         Name  Flags
      actions  

  public org.joda.time.DateTime lastUpdatedTime();
    descriptor: ()Lorg/joda/time/DateTime;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
         0: .line 354
            aload 0 /* this */
            getfield com.microsoft.azure.management.monitor.MetricAlertResourcePatch.lastUpdatedTime:Lorg/joda/time/DateTime;
            areturn
        end local 0 // com.microsoft.azure.management.monitor.MetricAlertResourcePatch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/management/monitor/MetricAlertResourcePatch;
}
SourceFile: "MetricAlertResourcePatch.java"
InnerClasses:
  public final Access = com.fasterxml.jackson.annotation.JsonProperty$Access of com.fasterxml.jackson.annotation.JsonProperty
    RuntimeVisibleAnnotations: 
      com.microsoft.rest.serializer.JsonFlatten()