class Google::Apis::ApigeeV1::GoogleCloudApigeeV1EntityMetadata
Metadata common to many entities in this API.
Attributes
created_at[RW]
Time at which the API proxy was created, in milliseconds since epoch. Corresponds to the JSON property `createdAt` @return [Fixnum]
last_modified_at[RW]
Time at which the API proxy was most recently modified, in milliseconds since epoch. Corresponds to the JSON property `lastModifiedAt` @return [Fixnum]
sub_type[RW]
The type of entity described Corresponds to the JSON property `subType` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 2860 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/apigee_v1/classes.rb, line 2865 def update!(**args) @created_at = args[:created_at] if args.key?(:created_at) @last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at) @sub_type = args[:sub_type] if args.key?(:sub_type) end