Class: Google::Apis::ServicemanagementV1::Enum
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ServicemanagementV1::Enum
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/servicemanagement_v1/classes.rb,
lib/google/apis/servicemanagement_v1/representations.rb,
lib/google/apis/servicemanagement_v1/representations.rb 
Overview
Enum type definition.
Instance Attribute Summary collapse
- 
  
    
      #edition  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The source edition string, only valid when syntax is SYNTAX_EDITIONS.
 - 
  
    
      #enumvalue  ⇒ Array<Google::Apis::ServicemanagementV1::EnumValue> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Enum value definitions.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Enum type name.
 - 
  
    
      #options  ⇒ Array<Google::Apis::ServicemanagementV1::Option> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Protocol buffer options.
 - 
  
    
      #source_context  ⇒ Google::Apis::ServicemanagementV1::SourceContext 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
SourceContextrepresents information about the source of a protobuf element, like the file in which it is defined. - 
  
    
      #syntax  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The source syntax.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Enum 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Enum.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ Enum
Returns a new instance of Enum.
      1501 1502 1503  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 1501 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#edition ⇒ String
The source edition string, only valid when syntax is SYNTAX_EDITIONS.
Corresponds to the JSON property edition
      1473 1474 1475  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 1473 def edition @edition end  | 
  
#enumvalue ⇒ Array<Google::Apis::ServicemanagementV1::EnumValue>
Enum value definitions.
Corresponds to the JSON property enumvalue
      1478 1479 1480  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 1478 def enumvalue @enumvalue end  | 
  
#name ⇒ String
Enum type name.
Corresponds to the JSON property name
      1483 1484 1485  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 1483 def name @name end  | 
  
#options ⇒ Array<Google::Apis::ServicemanagementV1::Option>
Protocol buffer options.
Corresponds to the JSON property options
      1488 1489 1490  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 1488 def @options end  | 
  
#source_context ⇒ Google::Apis::ServicemanagementV1::SourceContext
SourceContext represents information about the source of a protobuf element,
like the file in which it is defined.
Corresponds to the JSON property sourceContext
      1494 1495 1496  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 1494 def source_context @source_context end  | 
  
#syntax ⇒ String
The source syntax.
Corresponds to the JSON property syntax
      1499 1500 1501  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 1499 def syntax @syntax end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1506 1507 1508 1509 1510 1511 1512 1513  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 1506 def update!(**args) @edition = args[:edition] if args.key?(:edition) @enumvalue = args[:enumvalue] if args.key?(:enumvalue) @name = args[:name] if args.key?(:name) @options = args[:options] if args.key?(:options) @source_context = args[:source_context] if args.key?(:source_context) @syntax = args[:syntax] if args.key?(:syntax) end  |