class Azure::CDN::Mgmt::V2020_09_01::Models::SystemData

Read only system data

Attributes

created_at[RW]

@return [DateTime] The timestamp of resource creation (UTC)

created_by[RW]

@return [String] An identifier for the identity that created the resource

created_by_type[RW]

@return [IdentityType] 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] An identifier for the identity that last modified the resource

last_modified_by_type[RW]

@return [IdentityType] 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/2020-09-01/generated/azure_mgmt_cdn/models/system_data.rb, line 44
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