Class: Google::Apis::MonitoringV3::LabelDescriptor
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::MonitoringV3::LabelDescriptor
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/monitoring_v3/classes.rb,
lib/google/apis/monitoring_v3/representations.rb,
lib/google/apis/monitoring_v3/representations.rb 
Overview
A description of a label.
Instance Attribute Summary collapse
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A human-readable description for the label.
 - 
  
    
      #key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The key for this label.
 - 
  
    
      #value_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of data that can be assigned to the label.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ LabelDescriptor 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of LabelDescriptor.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ LabelDescriptor
Returns a new instance of LabelDescriptor.
      2130 2131 2132  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2130 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#description ⇒ String
A human-readable description for the label.
Corresponds to the JSON property description
      2115 2116 2117  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2115 def description @description end  | 
  
#key ⇒ String
The key for this label. The key must meet the following criteria: Does not
exceed 100 characters. Matches the following regular expression: [a-zA-Z][a-zA-
Z0-9_]* The first character must be an upper- or lower-case letter. The
remaining characters must be letters, digits, or underscores.
Corresponds to the JSON property key
      2123 2124 2125  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2123 def key @key end  | 
  
#value_type ⇒ String
The type of data that can be assigned to the label.
Corresponds to the JSON property valueType
      2128 2129 2130  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2128 def value_type @value_type end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2135 2136 2137 2138 2139  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2135 def update!(**args) @description = args[:description] if args.key?(:description) @key = args[:key] if args.key?(:key) @value_type = args[:value_type] if args.key?(:value_type) end  |