class Azure::KubernetesConfiguration::Mgmt::V2021_03_01::Models::SystemData
Metadata pertaining to creation and last modification of the resource.
Attributes
created_at[RW]
@return [DateTime] The timestamp of resource creation (UTC).
created_by[RW]
@return [String] The identity that created the resource.
created_by_type[RW]
@return [CreatedByType] The type of identity that created the resource. Possible values include: 'User', 'Application', 'ManagedIdentity', 'Key'
last_modified_at[RW]
@return [DateTime] The timestamp of resource last modification (UTC)
last_modified_by[RW]
@return [String] The identity that last modified the resource.
last_modified_by_type[RW]
@return [CreatedByType] The type of identity that last modified the resource. Possible values include: 'User', 'Application', 'ManagedIdentity', 'Key'
Private Class Methods
mapper()
click to toggle source
Mapper for SystemData
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2021-03-01/generated/azure_mgmt_kubernetes_configuration/models/system_data.rb, line 42 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'systemData', type: { name: 'Composite', class_name: 'SystemData', model_properties: { created_by: { client_side_validation: true, required: false, serialized_name: 'createdBy', type: { name: 'String' } }, created_by_type: { client_side_validation: true, required: false, serialized_name: 'createdByType', type: { name: 'String' } }, created_at: { client_side_validation: true, required: false, serialized_name: 'createdAt', type: { name: 'DateTime' } }, last_modified_by: { client_side_validation: true, required: false, serialized_name: 'lastModifiedBy', type: { name: 'String' } }, last_modified_by_type: { client_side_validation: true, required: false, serialized_name: 'lastModifiedByType', type: { name: 'String' } }, last_modified_at: { client_side_validation: true, required: false, serialized_name: 'lastModifiedAt', type: { name: 'DateTime' } } } } } end