Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1EntryGroup

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

An Entry Group represents a logical grouping of one or more Entries.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1EntryGroup

Returns a new instance of GoogleCloudDataplexV1EntryGroup.



4535
4536
4537
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4535

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

Instance Attribute Details

#create_timeString

Output only. The time when the EntryGroup was created. Corresponds to the JSON property createTime

Returns:

  • (String)


4493
4494
4495
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4493

def create_time
  @create_time
end

#descriptionString

Optional. Description of the EntryGroup. Corresponds to the JSON property description

Returns:

  • (String)


4498
4499
4500
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4498

def description
  @description
end

#display_nameString

Optional. User friendly display name. Corresponds to the JSON property displayName

Returns:

  • (String)


4503
4504
4505
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4503

def display_name
  @display_name
end

#etagString

This checksum is computed by the service, and might be sent on update and delete requests to ensure the client has an up-to-date value before proceeding. Corresponds to the JSON property etag

Returns:

  • (String)


4509
4510
4511
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4509

def etag
  @etag
end

#labelsHash<String,String>

Optional. User-defined labels for the EntryGroup. Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


4514
4515
4516
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4514

def labels
  @labels
end

#nameString

Output only. The relative resource name of the EntryGroup, in the format projects/project_id_or_number/locations/location_id/entryGroups/ entry_group_id. Corresponds to the JSON property name

Returns:

  • (String)


4521
4522
4523
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4521

def name
  @name
end

#uidString

Output only. System generated globally unique ID for the EntryGroup. If you delete and recreate the EntryGroup with the same name, this ID will be different. Corresponds to the JSON property uid

Returns:

  • (String)


4528
4529
4530
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4528

def uid
  @uid
end

#update_timeString

Output only. The time when the EntryGroup was last updated. Corresponds to the JSON property updateTime

Returns:

  • (String)


4533
4534
4535
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4533

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4540

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @description = args[:description] if args.key?(:description)
  @display_name = args[:display_name] if args.key?(:display_name)
  @etag = args[:etag] if args.key?(:etag)
  @labels = args[:labels] if args.key?(:labels)
  @name = args[:name] if args.key?(:name)
  @uid = args[:uid] if args.key?(:uid)
  @update_time = args[:update_time] if args.key?(:update_time)
end