Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1EntryGroup
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1EntryGroup
- 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
-
#create_time ⇒ String
Output only.
-
#description ⇒ String
Optional.
-
#display_name ⇒ String
Optional.
-
#etag ⇒ String
This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up- to-date value before proceeding.
-
#labels ⇒ Hash<String,String>
Optional.
-
#name ⇒ String
Output only.
-
#transfer_status ⇒ String
Output only.
-
#uid ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1EntryGroup
constructor
A new instance of GoogleCloudDataplexV1EntryGroup.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1EntryGroup
Returns a new instance of GoogleCloudDataplexV1EntryGroup.
4078 4079 4080 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4078 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. The time when the EntryGroup was created.
Corresponds to the JSON property createTime
4030 4031 4032 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4030 def create_time @create_time end |
#description ⇒ String
Optional. Description of the EntryGroup.
Corresponds to the JSON property description
4035 4036 4037 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4035 def description @description end |
#display_name ⇒ String
Optional. User friendly display name.
Corresponds to the JSON property displayName
4040 4041 4042 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4040 def display_name @display_name end |
#etag ⇒ String
This checksum is computed by the server based on the value of other fields,
and may 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
4047 4048 4049 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4047 def etag @etag end |
#labels ⇒ Hash<String,String>
Optional. User-defined labels for the EntryGroup.
Corresponds to the JSON property labels
4052 4053 4054 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4052 def labels @labels end |
#name ⇒ String
Output only. The relative resource name of the EntryGroup, of the form:
projects/project_number/locations/location_id/entryGroups/entry_group_id.
Corresponds to the JSON property name
4058 4059 4060 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4058 def name @name end |
#transfer_status ⇒ String
Output only. Denotes the transfer status of the Entry Group. It is unspecified
for Entry Group created from Dataplex API.
Corresponds to the JSON property transferStatus
4064 4065 4066 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4064 def transfer_status @transfer_status end |
#uid ⇒ String
Output only. System generated globally unique ID for the EntryGroup. This ID
will be different if the EntryGroup is deleted and re-created with the same
name.
Corresponds to the JSON property uid
4071 4072 4073 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4071 def uid @uid end |
#update_time ⇒ String
Output only. The time when the EntryGroup was last updated.
Corresponds to the JSON property updateTime
4076 4077 4078 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4076 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4083 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) @transfer_status = args[:transfer_status] if args.key?(:transfer_status) @uid = args[:uid] if args.key?(:uid) @update_time = args[:update_time] if args.key?(:update_time) end |