Class: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings
- Inherits:
-
Object
- Object
- Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb,
lib/google/apis/serviceconsumermanagement_v1beta1/representations.rb,
lib/google/apis/serviceconsumermanagement_v1beta1/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.
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.
578 579 580 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 578 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
570 571 572 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 570 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
576 577 578 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 576 def reference_docs_uri @reference_docs_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
583 584 585 586 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 583 def update!(**args) @destinations = args[:destinations] if args.key?(:destinations) @reference_docs_uri = args[:reference_docs_uri] if args.key?(:reference_docs_uri) end |