Class: Google::Apis::ServicenetworkingV1::Enum

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/servicenetworking_v1/classes.rb,
generated/google/apis/servicenetworking_v1/representations.rb,
generated/google/apis/servicenetworking_v1/representations.rb

Overview

Enum type definition.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Enum

Returns a new instance of Enum.



1470
1471
1472
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 1470

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#enumvalueArray<Google::Apis::ServicenetworkingV1::EnumValue>

Enum value definitions. Corresponds to the JSON property enumvalue



1447
1448
1449
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 1447

def enumvalue
  @enumvalue
end

#nameString

Enum type name. Corresponds to the JSON property name

Returns:

  • (String)


1452
1453
1454
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 1452

def name
  @name
end

#optionsArray<Google::Apis::ServicenetworkingV1::Option>

Protocol buffer options. Corresponds to the JSON property options



1457
1458
1459
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 1457

def options
  @options
end

#source_contextGoogle::Apis::ServicenetworkingV1::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



1463
1464
1465
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 1463

def source_context
  @source_context
end

#syntaxString

The source syntax. Corresponds to the JSON property syntax

Returns:

  • (String)


1468
1469
1470
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 1468

def syntax
  @syntax
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1475
1476
1477
1478
1479
1480
1481
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 1475

def update!(**args)
  @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