Class: Google::Apis::MonitoringV3::Field
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::MonitoringV3::Field
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/monitoring_v3/classes.rb,
 generated/google/apis/monitoring_v3/representations.rb,
 generated/google/apis/monitoring_v3/representations.rb
Overview
A single field of a message type.
Instance Attribute Summary collapse
- 
  
    
      #cardinality  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The field cardinality. 
- 
  
    
      #default_value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The string value of the default value of this field. 
- 
  
    
      #json_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The field JSON name. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The field type. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The field name. 
- 
  
    
      #number  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The field number. 
- 
  
    
      #oneof_index  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The index of the field type in Type.oneofs, for message or enumeration types. 
- 
  
    
      #options  ⇒ Array<Google::Apis::MonitoringV3::Option> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The protocol buffer options. 
- 
  
    
      #packed  ⇒ Boolean 
    
    
      (also: #packed?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Whether to use alternative packed wire representation. 
- 
  
    
      #type_url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The field type URL, without the scheme, for message or enumeration types. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Field 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Field. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Field
Returns a new instance of Field
| 915 916 917 | # File 'generated/google/apis/monitoring_v3/classes.rb', line 915 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#cardinality ⇒ String
The field cardinality.
Corresponds to the JSON property cardinality
| 865 866 867 | # File 'generated/google/apis/monitoring_v3/classes.rb', line 865 def cardinality @cardinality end | 
#default_value ⇒ String
The string value of the default value of this field. Proto2 syntax only.
Corresponds to the JSON property defaultValue
| 870 871 872 | # File 'generated/google/apis/monitoring_v3/classes.rb', line 870 def default_value @default_value end | 
#json_name ⇒ String
The field JSON name.
Corresponds to the JSON property jsonName
| 875 876 877 | # File 'generated/google/apis/monitoring_v3/classes.rb', line 875 def json_name @json_name end | 
#kind ⇒ String
The field type.
Corresponds to the JSON property kind
| 880 881 882 | # File 'generated/google/apis/monitoring_v3/classes.rb', line 880 def kind @kind end | 
#name ⇒ String
The field name.
Corresponds to the JSON property name
| 885 886 887 | # File 'generated/google/apis/monitoring_v3/classes.rb', line 885 def name @name end | 
#number ⇒ Fixnum
The field number.
Corresponds to the JSON property number
| 890 891 892 | # File 'generated/google/apis/monitoring_v3/classes.rb', line 890 def number @number end | 
#oneof_index ⇒ Fixnum
The index of the field type in Type.oneofs, for message or enumeration types.
The first type has index 1; zero means the type is not in the list.
Corresponds to the JSON property oneofIndex
| 896 897 898 | # File 'generated/google/apis/monitoring_v3/classes.rb', line 896 def oneof_index @oneof_index end | 
#options ⇒ Array<Google::Apis::MonitoringV3::Option>
The protocol buffer options.
Corresponds to the JSON property options
| 901 902 903 | # File 'generated/google/apis/monitoring_v3/classes.rb', line 901 def @options end | 
#packed ⇒ Boolean Also known as: packed?
Whether to use alternative packed wire representation.
Corresponds to the JSON property packed
| 906 907 908 | # File 'generated/google/apis/monitoring_v3/classes.rb', line 906 def packed @packed end | 
#type_url ⇒ String
The field type URL, without the scheme, for message or enumeration types.
Example: "type.googleapis.com/google.protobuf.Timestamp".
Corresponds to the JSON property typeUrl
| 913 914 915 | # File 'generated/google/apis/monitoring_v3/classes.rb', line 913 def type_url @type_url end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 920 921 922 923 924 925 926 927 928 929 930 931 | # File 'generated/google/apis/monitoring_v3/classes.rb', line 920 def update!(**args) @cardinality = args[:cardinality] if args.key?(:cardinality) @default_value = args[:default_value] if args.key?(:default_value) @json_name = args[:json_name] if args.key?(:json_name) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @number = args[:number] if args.key?(:number) @oneof_index = args[:oneof_index] if args.key?(:oneof_index) @options = args[:options] if args.key?(:options) @packed = args[:packed] if args.key?(:packed) @type_url = args[:type_url] if args.key?(:type_url) end |