Class: Google::Apis::ServiceusageV1::ClientLibrarySettings
- Inherits:
-
Object
- Object
- Google::Apis::ServiceusageV1::ClientLibrarySettings
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/serviceusage_v1/classes.rb,
lib/google/apis/serviceusage_v1/representations.rb,
lib/google/apis/serviceusage_v1/representations.rb
Overview
Details about how and where to publish client libraries.
Instance Attribute Summary collapse
-
#cpp_settings ⇒ Google::Apis::ServiceusageV1::CppSettings
Settings for C++ client libraries.
-
#dotnet_settings ⇒ Google::Apis::ServiceusageV1::DotnetSettings
Settings for Dotnet client libraries.
-
#go_settings ⇒ Google::Apis::ServiceusageV1::GoSettings
Settings for Go client libraries.
-
#java_settings ⇒ Google::Apis::ServiceusageV1::JavaSettings
Settings for Java client libraries.
-
#launch_stage ⇒ String
Launch stage of this version of the API.
-
#node_settings ⇒ Google::Apis::ServiceusageV1::NodeSettings
Settings for Node client libraries.
-
#php_settings ⇒ Google::Apis::ServiceusageV1::PhpSettings
Settings for Php client libraries.
-
#python_settings ⇒ Google::Apis::ServiceusageV1::PythonSettings
Settings for Python client libraries.
-
#rest_numeric_enums ⇒ Boolean
(also: #rest_numeric_enums?)
When using transport=rest, the client request will encode enums as numbers rather than strings.
-
#ruby_settings ⇒ Google::Apis::ServiceusageV1::RubySettings
Settings for Ruby client libraries.
-
#version ⇒ String
Version of the API to apply these settings to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ClientLibrarySettings
constructor
A new instance of ClientLibrarySettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ClientLibrarySettings
Returns a new instance of ClientLibrarySettings.
721 722 723 |
# File 'lib/google/apis/serviceusage_v1/classes.rb', line 721 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cpp_settings ⇒ Google::Apis::ServiceusageV1::CppSettings
Settings for C++ client libraries.
Corresponds to the JSON property cppSettings
667 668 669 |
# File 'lib/google/apis/serviceusage_v1/classes.rb', line 667 def cpp_settings @cpp_settings end |
#dotnet_settings ⇒ Google::Apis::ServiceusageV1::DotnetSettings
Settings for Dotnet client libraries.
Corresponds to the JSON property dotnetSettings
672 673 674 |
# File 'lib/google/apis/serviceusage_v1/classes.rb', line 672 def dotnet_settings @dotnet_settings end |
#go_settings ⇒ Google::Apis::ServiceusageV1::GoSettings
Settings for Go client libraries.
Corresponds to the JSON property goSettings
677 678 679 |
# File 'lib/google/apis/serviceusage_v1/classes.rb', line 677 def go_settings @go_settings end |
#java_settings ⇒ Google::Apis::ServiceusageV1::JavaSettings
Settings for Java client libraries.
Corresponds to the JSON property javaSettings
682 683 684 |
# File 'lib/google/apis/serviceusage_v1/classes.rb', line 682 def java_settings @java_settings end |
#launch_stage ⇒ String
Launch stage of this version of the API.
Corresponds to the JSON property launchStage
687 688 689 |
# File 'lib/google/apis/serviceusage_v1/classes.rb', line 687 def launch_stage @launch_stage end |
#node_settings ⇒ Google::Apis::ServiceusageV1::NodeSettings
Settings for Node client libraries.
Corresponds to the JSON property nodeSettings
692 693 694 |
# File 'lib/google/apis/serviceusage_v1/classes.rb', line 692 def node_settings @node_settings end |
#php_settings ⇒ Google::Apis::ServiceusageV1::PhpSettings
Settings for Php client libraries.
Corresponds to the JSON property phpSettings
697 698 699 |
# File 'lib/google/apis/serviceusage_v1/classes.rb', line 697 def php_settings @php_settings end |
#python_settings ⇒ Google::Apis::ServiceusageV1::PythonSettings
Settings for Python client libraries.
Corresponds to the JSON property pythonSettings
702 703 704 |
# File 'lib/google/apis/serviceusage_v1/classes.rb', line 702 def python_settings @python_settings end |
#rest_numeric_enums ⇒ Boolean 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
708 709 710 |
# File 'lib/google/apis/serviceusage_v1/classes.rb', line 708 def rest_numeric_enums @rest_numeric_enums end |
#ruby_settings ⇒ Google::Apis::ServiceusageV1::RubySettings
Settings for Ruby client libraries.
Corresponds to the JSON property rubySettings
714 715 716 |
# File 'lib/google/apis/serviceusage_v1/classes.rb', line 714 def ruby_settings @ruby_settings end |
#version ⇒ String
Version of the API to apply these settings to.
Corresponds to the JSON property version
719 720 721 |
# File 'lib/google/apis/serviceusage_v1/classes.rb', line 719 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
726 727 728 729 730 731 732 733 734 735 736 737 738 |
# File 'lib/google/apis/serviceusage_v1/classes.rb', line 726 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 |