Class: Google::Apis::ServiceconsumermanagementV1::ClientLibrarySettings

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

Overview

Details about how and where to publish client libraries.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ClientLibrarySettings

Returns a new instance of ClientLibrarySettings.



668
669
670
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 668

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

Instance Attribute Details

#cpp_settingsGoogle::Apis::ServiceconsumermanagementV1::CppSettings

Settings for C++ client libraries. Corresponds to the JSON property cppSettings



612
613
614
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 612

def cpp_settings
  @cpp_settings
end

#dotnet_settingsGoogle::Apis::ServiceconsumermanagementV1::DotnetSettings

Settings for Dotnet client libraries. Corresponds to the JSON property dotnetSettings



617
618
619
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 617

def dotnet_settings
  @dotnet_settings
end

#go_settingsGoogle::Apis::ServiceconsumermanagementV1::GoSettings

Settings for Go client libraries. Corresponds to the JSON property goSettings



622
623
624
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 622

def go_settings
  @go_settings
end

#java_settingsGoogle::Apis::ServiceconsumermanagementV1::JavaSettings

Settings for Java client libraries. Corresponds to the JSON property javaSettings



627
628
629
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 627

def java_settings
  @java_settings
end

#launch_stageString

Launch stage of this version of the API. Corresponds to the JSON property launchStage

Returns:

  • (String)


632
633
634
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 632

def launch_stage
  @launch_stage
end

#node_settingsGoogle::Apis::ServiceconsumermanagementV1::NodeSettings

Settings for Node client libraries. Corresponds to the JSON property nodeSettings



637
638
639
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 637

def node_settings
  @node_settings
end

#php_settingsGoogle::Apis::ServiceconsumermanagementV1::PhpSettings

Settings for Php client libraries. Corresponds to the JSON property phpSettings



642
643
644
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 642

def php_settings
  @php_settings
end

#python_settingsGoogle::Apis::ServiceconsumermanagementV1::PythonSettings

Settings for Python client libraries. Corresponds to the JSON property pythonSettings



647
648
649
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 647

def python_settings
  @python_settings
end

#rest_numeric_enumsBoolean Also known as: rest_numeric_enums?

When using transport=rest, the client request will encode enums as numbers rather than strings. Corresponds to the JSON property restNumericEnums

Returns:

  • (Boolean)


653
654
655
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 653

def rest_numeric_enums
  @rest_numeric_enums
end

#ruby_settingsGoogle::Apis::ServiceconsumermanagementV1::RubySettings

Settings for Ruby client libraries. Corresponds to the JSON property rubySettings



659
660
661
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 659

def ruby_settings
  @ruby_settings
end

#versionString

Version of the API to apply these settings to. This is the full protobuf package for the API, ending in the version element. Examples: "google.cloud. speech.v1" and "google.spanner.admin.database.v1". Corresponds to the JSON property version

Returns:

  • (String)


666
667
668
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 666

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



673
674
675
676
677
678
679
680
681
682
683
684
685
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 673

def update!(**args)
  @cpp_settings = args[:cpp_settings] if args.key?(:cpp_settings)
  @dotnet_settings = args[:dotnet_settings] if args.key?(:dotnet_settings)
  @go_settings = args[:go_settings] if args.key?(:go_settings)
  @java_settings = args[:java_settings] if args.key?(:java_settings)
  @launch_stage = args[:launch_stage] if args.key?(:launch_stage)
  @node_settings = args[:node_settings] if args.key?(:node_settings)
  @php_settings = args[:php_settings] if args.key?(:php_settings)
  @python_settings = args[:python_settings] if args.key?(:python_settings)
  @rest_numeric_enums = args[:rest_numeric_enums] if args.key?(:rest_numeric_enums)
  @ruby_settings = args[:ruby_settings] if args.key?(:ruby_settings)
  @version = args[:version] if args.key?(:version)
end