module Gapic::Generators::DefaultGeneratorParameters
Contains the default generator's parameters
Constants
- ARRAY_PARAMETERS
- ARRAY_PARAMETERS_ALIASES
- BOOL_PARAMETERS
- BOOL_PARAMETERS_ALIASES
- MAP_PARAMETERS
- MAP_PARAMETERS_ALIASES
- STRING_PARAMETERS
- STRING_PARAMETERS_ALIASES
Public Class Methods
default_schema()
click to toggle source
# File lib/gapic/generators/default_generator_parameters.rb, line 103 def self.default_schema base_schema = Gapic::Schema::ParameterSchema.create( bool_params_list: BOOL_PARAMETERS, string_params_list: STRING_PARAMETERS, array_params_list: ARRAY_PARAMETERS, map_params_list: MAP_PARAMETERS ) base_schema.extend_with_aliases( bool_aliases: BOOL_PARAMETERS_ALIASES, string_aliases: STRING_PARAMETERS_ALIASES, array_aliases: ARRAY_PARAMETERS_ALIASES, map_aliases: MAP_PARAMETERS_ALIASES ) end