30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# File 'lib/appwrite/models/deployment.rb', line 30
def initialize(
id:,
created_at:,
updated_at:,
type:,
resource_id:,
resource_type:,
entrypoint:,
size:,
build_id:,
activate:,
status:,
build_logs:,
build_time:,
provider_repository_name:,
provider_repository_owner:,
provider_repository_url:,
provider_branch:,
provider_commit_hash:,
provider_commit_author_url:,
provider_commit_author:,
provider_commit_message:,
provider_commit_url:,
provider_branch_url:
)
@id = id
@created_at = created_at
@updated_at = updated_at
@type = type
@resource_id = resource_id
@resource_type = resource_type
@entrypoint = entrypoint
@size = size
@build_id = build_id
@activate = activate
@status = status
@build_logs = build_logs
@build_time = build_time
@provider_repository_name = provider_repository_name
@provider_repository_owner = provider_repository_owner
@provider_repository_url = provider_repository_url
@provider_branch = provider_branch
@provider_commit_hash = provider_commit_hash
@provider_commit_author_url = provider_commit_author_url
@provider_commit_author = provider_commit_author
@provider_commit_message = provider_commit_message
@provider_commit_url = provider_commit_url
@provider_branch_url = provider_branch_url
end
|