Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1UpdateGlossaryCategoryRequest

Inherits:
Object
  • Object
show all
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 GlossaryCategory Request

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1UpdateGlossaryCategoryRequest

Returns a new instance of GoogleCloudDataplexV1UpdateGlossaryCategoryRequest.



11209
11210
11211
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11209

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#categoryGoogle::Apis::DataplexV1::GoogleCloudDataplexV1GlossaryCategory

A GlossaryCategory represents a collection of GlossaryCategories and GlossaryTerms within a Glossary that are related to each other. Corresponds to the JSON property category



11202
11203
11204
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11202

def category
  @category
end

#update_maskString

Required. The list of fields to update. Corresponds to the JSON property updateMask

Returns:

  • (String)


11207
11208
11209
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11207

def update_mask
  @update_mask
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11214
11215
11216
11217
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11214

def update!(**args)
  @category = args[:category] if args.key?(:category)
  @update_mask = args[:update_mask] if args.key?(:update_mask)
end