Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1UpdateGlossaryTermRequest
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1UpdateGlossaryTermRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataplex_v1/classes.rb,
lib/google/apis/dataplex_v1/representations.rb,
lib/google/apis/dataplex_v1/representations.rb
Overview
Update GlossaryTerm Request
Instance Attribute Summary collapse
-
#term ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1GlossaryTerm
GlossaryTerms are the core of Glossary.
-
#update_mask ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1UpdateGlossaryTermRequest
constructor
A new instance of GoogleCloudDataplexV1UpdateGlossaryTermRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1UpdateGlossaryTermRequest
Returns a new instance of GoogleCloudDataplexV1UpdateGlossaryTermRequest.
11232 11233 11234 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11232 def initialize(**args) update!(**args) end |
Instance Attribute Details
#term ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1GlossaryTerm
GlossaryTerms are the core of Glossary. A GlossaryTerm holds a rich text
description that can be attached to Entries or specific columns to enrich them.
Corresponds to the JSON property term
11225 11226 11227 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11225 def term @term end |
#update_mask ⇒ String
Required. The list of fields to update.
Corresponds to the JSON property updateMask
11230 11231 11232 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11230 def update_mask @update_mask end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11237 11238 11239 11240 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11237 def update!(**args) @term = args[:term] if args.key?(:term) @update_mask = args[:update_mask] if args.key?(:update_mask) end |