Method: Appwrite::Functions#list_runtimes

Defined in:
lib/appwrite/services/functions.rb

#list_runtimesRuntimeList

Get a list of all runtimes that are currently active on your instance.

Returns:

  • (RuntimeList)


125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# File 'lib/appwrite/services/functions.rb', line 125

def list_runtimes()
    api_path = '/functions/runtimes'

    api_params = {
    }
    
    api_headers = {
    }

    @client.call(
        method: 'GET',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::RuntimeList
    )
end