Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1UpdateGlossaryRequest
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1UpdateGlossaryRequest
- 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 Glossary Request
Instance Attribute Summary collapse
-
#glossary ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1Glossary
A Glossary represents a collection of GlossaryCategories and GlossaryTerms defined by the user.
-
#update_mask ⇒ String
Required.
-
#validate_only ⇒ Boolean
(also: #validate_only?)
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1UpdateGlossaryRequest
constructor
A new instance of GoogleCloudDataplexV1UpdateGlossaryRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1UpdateGlossaryRequest
Returns a new instance of GoogleCloudDataplexV1UpdateGlossaryRequest.
11205 11206 11207 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11205 def initialize(**args) update!(**args) end |
Instance Attribute Details
#glossary ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1Glossary
A Glossary represents a collection of GlossaryCategories and GlossaryTerms
defined by the user. Glossary is a top level resource and is the Google Cloud
parent resource of all the GlossaryCategories and GlossaryTerms within it.
Corresponds to the JSON property glossary
11191 11192 11193 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11191 def glossary @glossary end |
#update_mask ⇒ String
Required. The list of fields to update.
Corresponds to the JSON property updateMask
11196 11197 11198 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11196 def update_mask @update_mask end |
#validate_only ⇒ Boolean Also known as: validate_only?
Optional. Validates the request without actually updating the Glossary.
Default: false.
Corresponds to the JSON property validateOnly
11202 11203 11204 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11202 def validate_only @validate_only end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11210 11211 11212 11213 11214 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11210 def update!(**args) @glossary = args[:glossary] if args.key?(:glossary) @update_mask = args[:update_mask] if args.key?(:update_mask) @validate_only = args[:validate_only] if args.key?(:validate_only) end |