Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1EntrySource
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1EntrySource
- 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
EntrySource contains source system related information for the entry.
Instance Attribute Summary collapse
-
#ancestors ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1EntrySourceAncestor>
Immutable.
-
#create_time ⇒ String
The create time of the resource in the source system.
-
#description ⇒ String
Description of the Entry.
-
#display_name ⇒ String
User friendly display name.
-
#labels ⇒ Hash<String,String>
User-defined labels.
-
#platform ⇒ String
The platform containing the source system.
-
#resource ⇒ String
The name of the resource in the source system.
-
#system ⇒ String
The name of the source system.
-
#update_time ⇒ String
The update time of the resource in the source system.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1EntrySource
constructor
A new instance of GoogleCloudDataplexV1EntrySource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1EntrySource
Returns a new instance of GoogleCloudDataplexV1EntrySource.
4148 4149 4150 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4148 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ancestors ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1EntrySourceAncestor>
Immutable. The ancestors of the Entry in the source system.
Corresponds to the JSON property ancestors
4103 4104 4105 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4103 def ancestors @ancestors end |
#create_time ⇒ String
The create time of the resource in the source system.
Corresponds to the JSON property createTime
4108 4109 4110 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4108 def create_time @create_time end |
#description ⇒ String
Description of the Entry. The maximum size of the field is 2000 characters.
Corresponds to the JSON property description
4113 4114 4115 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4113 def description @description end |
#display_name ⇒ String
User friendly display name. The maximum size of the field is 500 characters.
Corresponds to the JSON property displayName
4118 4119 4120 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4118 def display_name @display_name end |
#labels ⇒ Hash<String,String>
User-defined labels. The maximum size of keys and values is 128 characters
each.
Corresponds to the JSON property labels
4124 4125 4126 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4124 def labels @labels end |
#platform ⇒ String
The platform containing the source system. The maximum size of the field is 64
characters.
Corresponds to the JSON property platform
4130 4131 4132 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4130 def platform @platform end |
#resource ⇒ String
The name of the resource in the source system. The maximum size of the field
is 4000 characters.
Corresponds to the JSON property resource
4136 4137 4138 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4136 def resource @resource end |
#system ⇒ String
The name of the source system. The maximum size of the field is 64 characters.
Corresponds to the JSON property system
4141 4142 4143 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4141 def system @system end |
#update_time ⇒ String
The update time of the resource in the source system.
Corresponds to the JSON property updateTime
4146 4147 4148 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4146 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4153 def update!(**args) @ancestors = args[:ancestors] if args.key?(:ancestors) @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) @labels = args[:labels] if args.key?(:labels) @platform = args[:platform] if args.key?(:platform) @resource = args[:resource] if args.key?(:resource) @system = args[:system] if args.key?(:system) @update_time = args[:update_time] if args.key?(:update_time) end |