Class: Appwrite::Models::Bucket

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id:, created_at:, updated_at:, permissions:, file_security:, name:, enabled:, maximum_file_size:, allowed_file_extensions:, compression:, encryption:, antivirus:, transformations:, total_size:) ⇒ Bucket

Returns a new instance of Bucket.



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
46
47
48
49
50
51
# File 'lib/appwrite/models/bucket.rb', line 21

def initialize(
    id:,
    created_at:,
    updated_at:,
    permissions:,
    file_security:,
    name:,
    enabled:,
    maximum_file_size:,
    allowed_file_extensions:,
    compression:,
    encryption:,
    antivirus:,
    transformations:,
    total_size:
)
    @id = id
    @created_at = created_at
    @updated_at = updated_at
    @permissions = permissions
    @file_security = file_security
    @name = name
    @enabled = enabled
    @maximum_file_size = maximum_file_size
    @allowed_file_extensions = allowed_file_extensions
    @compression = compression
    @encryption = encryption
    @antivirus = antivirus
    @transformations = transformations
    @total_size = total_size
end

Instance Attribute Details

#allowed_file_extensionsObject (readonly)

Returns the value of attribute allowed_file_extensions.



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

def allowed_file_extensions
  @allowed_file_extensions
end

#antivirusObject (readonly)

Returns the value of attribute antivirus.



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

def antivirus
  @antivirus
end

#compressionObject (readonly)

Returns the value of attribute compression.



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

def compression
  @compression
end

#created_atObject (readonly)

Returns the value of attribute created_at.



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

def created_at
  @created_at
end

#enabledObject (readonly)

Returns the value of attribute enabled.



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

def enabled
  @enabled
end

#encryptionObject (readonly)

Returns the value of attribute encryption.



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

def encryption
  @encryption
end

#file_securityObject (readonly)

Returns the value of attribute file_security.



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

def file_security
  @file_security
end

#idObject (readonly)

Returns the value of attribute id.



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

def id
  @id
end

#maximum_file_sizeObject (readonly)

Returns the value of attribute maximum_file_size.



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

def maximum_file_size
  @maximum_file_size
end

#nameObject (readonly)

Returns the value of attribute name.



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

def name
  @name
end

#permissionsObject (readonly)

Returns the value of attribute permissions.



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

def permissions
  @permissions
end

#total_sizeObject (readonly)

Returns the value of attribute total_size.



19
20
21
# File 'lib/appwrite/models/bucket.rb', line 19

def total_size
  @total_size
end

#transformationsObject (readonly)

Returns the value of attribute transformations.



18
19
20
# File 'lib/appwrite/models/bucket.rb', line 18

def transformations
  @transformations
end

#updated_atObject (readonly)

Returns the value of attribute updated_at.



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

def updated_at
  @updated_at
end

Class Method Details

.from(map:) ⇒ Object



53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# File 'lib/appwrite/models/bucket.rb', line 53

def self.from(map:)
    Bucket.new(
        id: map["$id"],
        created_at: map["$createdAt"],
        updated_at: map["$updatedAt"],
        permissions: map["$permissions"],
        file_security: map["fileSecurity"],
        name: map["name"],
        enabled: map["enabled"],
        maximum_file_size: map["maximumFileSize"],
        allowed_file_extensions: map["allowedFileExtensions"],
        compression: map["compression"],
        encryption: map["encryption"],
        antivirus: map["antivirus"],
        transformations: map["transformations"],
        total_size: map["totalSize"]
    )
end

Instance Method Details

#to_mapObject



72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# File 'lib/appwrite/models/bucket.rb', line 72

def to_map
    {
        "$id": @id,
        "$createdAt": @created_at,
        "$updatedAt": @updated_at,
        "$permissions": @permissions,
        "fileSecurity": @file_security,
        "name": @name,
        "enabled": @enabled,
        "maximumFileSize": @maximum_file_size,
        "allowedFileExtensions": @allowed_file_extensions,
        "compression": @compression,
        "encryption": @encryption,
        "antivirus": @antivirus,
        "transformations": @transformations,
        "totalSize": @total_size
    }
end