Class: Appwrite::Models::Database

Inherits:
Object
  • Object
show all
Defined in:
lib/appwrite/models/database.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id:, name:, created_at:, updated_at:, enabled:, type:, status:, engine:, specification:, replicas:, policies:, archives:) ⇒ Database

Returns a new instance of Database.



19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/appwrite/models/database.rb', line 19

def initialize(
    id:,
    name:,
    created_at:,
    updated_at:,
    enabled:,
    type:,
    status: ,
    engine: ,
    specification: ,
    replicas: ,
    policies: ,
    archives: 
)
    @id = id
    @name = name
    @created_at = created_at
    @updated_at = updated_at
    @enabled = enabled
    @type = validate_type(type)
    @status = status.nil? ? status : validate_status(status)
    @engine = engine
    @specification = specification
    @replicas = replicas
    @policies = policies
    @archives = archives
end

Instance Attribute Details

#archivesObject (readonly)

Returns the value of attribute archives.



17
18
19
# File 'lib/appwrite/models/database.rb', line 17

def archives
  @archives
end

#created_atObject (readonly)

Returns the value of attribute created_at.



8
9
10
# File 'lib/appwrite/models/database.rb', line 8

def created_at
  @created_at
end

#enabledObject (readonly)

Returns the value of attribute enabled.



10
11
12
# File 'lib/appwrite/models/database.rb', line 10

def enabled
  @enabled
end

#engineObject (readonly)

Returns the value of attribute engine.



13
14
15
# File 'lib/appwrite/models/database.rb', line 13

def engine
  @engine
end

#idObject (readonly)

Returns the value of attribute id.



6
7
8
# File 'lib/appwrite/models/database.rb', line 6

def id
  @id
end

#nameObject (readonly)

Returns the value of attribute name.



7
8
9
# File 'lib/appwrite/models/database.rb', line 7

def name
  @name
end

#policiesObject (readonly)

Returns the value of attribute policies.



16
17
18
# File 'lib/appwrite/models/database.rb', line 16

def policies
  @policies
end

#replicasObject (readonly)

Returns the value of attribute replicas.



15
16
17
# File 'lib/appwrite/models/database.rb', line 15

def replicas
  @replicas
end

#specificationObject (readonly)

Returns the value of attribute specification.



14
15
16
# File 'lib/appwrite/models/database.rb', line 14

def specification
  @specification
end

#statusObject (readonly)

Returns the value of attribute status.



12
13
14
# File 'lib/appwrite/models/database.rb', line 12

def status
  @status
end

#typeObject (readonly)

Returns the value of attribute type.



11
12
13
# File 'lib/appwrite/models/database.rb', line 11

def type
  @type
end

#updated_atObject (readonly)

Returns the value of attribute updated_at.



9
10
11
# File 'lib/appwrite/models/database.rb', line 9

def updated_at
  @updated_at
end

Class Method Details

.from(map:) ⇒ Object



47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# File 'lib/appwrite/models/database.rb', line 47

def self.from(map:)
    Database.new(
        id: map["$id"],
        name: map["name"],
        created_at: map["$createdAt"],
        updated_at: map["$updatedAt"],
        enabled: map["enabled"],
        type: map["type"],
        status: map["status"],
        engine: map["engine"],
        specification: map["specification"],
        replicas: map["replicas"],
        policies: map["policies"]&.map { |it| BackupPolicy.from(map: it) },
        archives: map["archives"]&.map { |it| BackupArchive.from(map: it) }
    )
end

Instance Method Details

#to_mapObject



64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# File 'lib/appwrite/models/database.rb', line 64

def to_map
    {
        "$id": @id,
        "name": @name,
        "$createdAt": @created_at,
        "$updatedAt": @updated_at,
        "enabled": @enabled,
        "type": @type,
        "status": @status,
        "engine": @engine,
        "specification": @specification,
        "replicas": @replicas,
        "policies": @policies&.map { |it| it.to_map },
        "archives": @archives&.map { |it| it.to_map }
    }
end