Class: Google::Apis::ServicenetworkingV1beta::ClientLibrarySettings

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

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.

[View source]

711
712
713
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 711

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

Instance Attribute Details

#cpp_settingsGoogle::Apis::ServicenetworkingV1beta::CppSettings

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


655
656
657
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 655

def cpp_settings
  @cpp_settings
end

#dotnet_settingsGoogle::Apis::ServicenetworkingV1beta::DotnetSettings

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


660
661
662
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 660

def dotnet_settings
  @dotnet_settings
end

#go_settingsGoogle::Apis::ServicenetworkingV1beta::GoSettings

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


665
666
667
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 665

def go_settings
  @go_settings
end

#java_settingsGoogle::Apis::ServicenetworkingV1beta::JavaSettings

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


670
671
672
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 670

def java_settings
  @java_settings
end

#launch_stageString

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

Returns:

  • (String)

675
676
677
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 675

def launch_stage
  @launch_stage
end

#node_settingsGoogle::Apis::ServicenetworkingV1beta::NodeSettings

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


680
681
682
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 680

def node_settings
  @node_settings
end

#php_settingsGoogle::Apis::ServicenetworkingV1beta::PhpSettings

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


685
686
687
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 685

def php_settings
  @php_settings
end

#python_settingsGoogle::Apis::ServicenetworkingV1beta::PythonSettings

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


690
691
692
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 690

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)

696
697
698
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 696

def rest_numeric_enums
  @rest_numeric_enums
end

#ruby_settingsGoogle::Apis::ServicenetworkingV1beta::RubySettings

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


702
703
704
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 702

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)

709
710
711
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 709

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

716
717
718
719
720
721
722
723
724
725
726
727
728
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 716

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