Class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1SystemTimestamps
- Inherits:
-
Object
- Object
- Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1SystemTimestamps
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datacatalog_v1beta1/classes.rb,
lib/google/apis/datacatalog_v1beta1/representations.rb,
lib/google/apis/datacatalog_v1beta1/representations.rb
Overview
Timestamps associated with this resource in a particular system.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Creation timestamp of the resource within the given system.
-
#expire_time ⇒ String
Output only.
-
#update_time ⇒ String
Timestamp of the last modification of the resource or its metadata within a given system.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatacatalogV1SystemTimestamps
constructor
A new instance of GoogleCloudDatacatalogV1SystemTimestamps.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatacatalogV1SystemTimestamps
Returns a new instance of GoogleCloudDatacatalogV1SystemTimestamps.
1819 1820 1821 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 1819 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Creation timestamp of the resource within the given system.
Corresponds to the JSON property createTime
1803 1804 1805 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 1803 def create_time @create_time end |
#expire_time ⇒ String
Output only. Expiration timestamp of the resource within the given system.
Currently only applicable to BigQuery resources.
Corresponds to the JSON property expireTime
1809 1810 1811 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 1809 def expire_time @expire_time end |
#update_time ⇒ String
Timestamp of the last modification of the resource or its metadata within a
given system. Note: Depending on the source system, not every modification
updates this timestamp. For example, BigQuery timestamps every metadata
modification but not data or permission changes.
Corresponds to the JSON property updateTime
1817 1818 1819 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 1817 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1824 1825 1826 1827 1828 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 1824 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @expire_time = args[:expire_time] if args.key?(:expire_time) @update_time = args[:update_time] if args.key?(:update_time) end |