Class: Google::Apis::ServicemanagementV1::CommonLanguageSettings
- Inherits:
-
Object
- Object
- Google::Apis::ServicemanagementV1::CommonLanguageSettings
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/servicemanagement_v1/classes.rb,
lib/google/apis/servicemanagement_v1/representations.rb,
lib/google/apis/servicemanagement_v1/representations.rb
Overview
Required information for every language.
Instance Attribute Summary collapse
-
#destinations ⇒ Array<String>
The destination where API teams want this client library to be published.
-
#reference_docs_uri ⇒ String
Link to automatically generated reference documentation.
-
#selective_gapic_generation ⇒ Google::Apis::ServicemanagementV1::SelectiveGapicGeneration
This message is used to configure the generation of a subset of the RPCs in a service for client libraries.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CommonLanguageSettings
constructor
A new instance of CommonLanguageSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CommonLanguageSettings
Returns a new instance of CommonLanguageSettings.
801 802 803 |
# File 'lib/google/apis/servicemanagement_v1/classes.rb', line 801 def initialize(**args) update!(**args) end |
Instance Attribute Details
#destinations ⇒ Array<String>
The destination where API teams want this client library to be published.
Corresponds to the JSON property destinations
787 788 789 |
# File 'lib/google/apis/servicemanagement_v1/classes.rb', line 787 def destinations @destinations end |
#reference_docs_uri ⇒ String
Link to automatically generated reference documentation. Example: https://
cloud.google.com/nodejs/docs/reference/asset/latest
Corresponds to the JSON property referenceDocsUri
793 794 795 |
# File 'lib/google/apis/servicemanagement_v1/classes.rb', line 793 def reference_docs_uri @reference_docs_uri end |
#selective_gapic_generation ⇒ Google::Apis::ServicemanagementV1::SelectiveGapicGeneration
This message is used to configure the generation of a subset of the RPCs in a
service for client libraries.
Corresponds to the JSON property selectiveGapicGeneration
799 800 801 |
# File 'lib/google/apis/servicemanagement_v1/classes.rb', line 799 def selective_gapic_generation @selective_gapic_generation end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
806 807 808 809 810 |
# File 'lib/google/apis/servicemanagement_v1/classes.rb', line 806 def update!(**args) @destinations = args[:destinations] if args.key?(:destinations) @reference_docs_uri = args[:reference_docs_uri] if args.key?(:reference_docs_uri) @selective_gapic_generation = args[:selective_gapic_generation] if args.key?(:selective_gapic_generation) end |