Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1EntityMetadata

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb

Overview

Metadata common to many entities in this API.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1EntityMetadata

Returns a new instance of GoogleCloudApigeeV1EntityMetadata.



3153
3154
3155
# File 'lib/google/apis/apigee_v1/classes.rb', line 3153

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

Instance Attribute Details

#created_atFixnum

Time at which the API proxy was created, in milliseconds since epoch. Corresponds to the JSON property createdAt

Returns:

  • (Fixnum)


3140
3141
3142
# File 'lib/google/apis/apigee_v1/classes.rb', line 3140

def created_at
  @created_at
end

#last_modified_atFixnum

Time at which the API proxy was most recently modified, in milliseconds since epoch. Corresponds to the JSON property lastModifiedAt

Returns:

  • (Fixnum)


3146
3147
3148
# File 'lib/google/apis/apigee_v1/classes.rb', line 3146

def last_modified_at
  @last_modified_at
end

#sub_typeString

The type of entity described Corresponds to the JSON property subType

Returns:

  • (String)


3151
3152
3153
# File 'lib/google/apis/apigee_v1/classes.rb', line 3151

def sub_type
  @sub_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3158
3159
3160
3161
3162
# File 'lib/google/apis/apigee_v1/classes.rb', line 3158

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