public class PluginClient
extends Object
Modifier and Type | Method and Description |
---|---|
GetAppsResponseBody |
getApps(GetAppsRequest request)
Gets the list of Apps that have the specified Plug-in added.
|
List<App> |
getApps(String id)
Gets the list of Apps that have the specified Plug-in added.
|
List<App> |
getApps(String id,
Long offset,
Long limit)
Gets the list of Apps that have the specified Plug-in added.
|
GetInstalledPluginsResponseBody |
getInstalledPlugins()
Gets the list of plug-ins imported into Kintone.
|
GetInstalledPluginsResponseBody |
getInstalledPlugins(GetInstalledPluginsRequest request)
Gets the list of plug-ins imported into Kintone.
|
GetInstalledPluginsResponseBody |
getInstalledPlugins(Long offset,
Long limit)
Gets the list of plug-ins imported into Kintone.
|
List<Plugin> |
getRequiredPlugins()
Gets the list of plug-ins that have been deleted from Kintone, but have already been added to
Apps.
|
GetRequiredPluginsResponseBody |
getRequiredPlugins(GetRequiredPluginsRequest request)
Gets the list of plug-ins that have been deleted from Kintone, but have already been added to
Apps.
|
List<Plugin> |
getRequiredPlugins(Long offset,
Long limit)
Gets the list of plug-ins that have been deleted from Kintone, but have already been added to
Apps.
|
InstallPluginResponseBody |
installPlugin(InstallPluginRequest request)
Installs a Plug-in into Kintone.
|
InstallPluginResponseBody |
installPlugin(String fileKey)
Installs a Plug-in into Kintone.
|
void |
uninstallPlugin(String id)
Uninstalls a Plug-in from the Kintone environment.
|
UninstallPluginResponseBody |
uninstallPlugin(UninstallPluginRequest request)
Uninstalls a Plug-in from the Kintone environment.
|
UpdatePluginResponseBody |
updatePlugin(String id,
String fileKey)
Updates an installed Plug-in in the Kintone environment.
|
UpdatePluginResponseBody |
updatePlugin(UpdatePluginRequest request)
Updates an installed Plug-in in the Kintone environment.
|
public GetInstalledPluginsResponseBody getInstalledPlugins()
GetInstalledPluginsResponseBody
public GetInstalledPluginsResponseBody getInstalledPlugins(Long offset, Long limit)
offset
- The number of plug-ins to skip from the list of installed plug-ins.limit
- The maximum number of plug-ins to retrieve.GetInstalledPluginsResponseBody
public GetInstalledPluginsResponseBody getInstalledPlugins(GetInstalledPluginsRequest request)
request
- the request parameters. See GetInstalledPluginsRequest
GetInstalledPluginsResponseBody
public InstallPluginResponseBody installPlugin(String fileKey)
fileKey
- the fileKey representing an uploaded file.InstallPluginResponseBody
public InstallPluginResponseBody installPlugin(InstallPluginRequest request)
request
- the request parameters. See InstallPluginRequest
InstallPluginResponseBody
public void uninstallPlugin(String id)
id
- the Plug-in ID.public UninstallPluginResponseBody uninstallPlugin(UninstallPluginRequest request)
request
- the request parameters. See UninstallPluginRequest
UninstallPluginResponseBody
public UpdatePluginResponseBody updatePlugin(String id, String fileKey)
id
- the Plug-in ID.fileKey
- the fileKey representing an uploaded file.UpdatePluginResponseBody
public UpdatePluginResponseBody updatePlugin(UpdatePluginRequest request)
request
- the request parameters. See UpdatePluginRequest
UpdatePluginResponseBody
public List<App> getApps(String id)
id
- The ID of the plug-in.public List<App> getApps(String id, Long offset, Long limit)
id
- The ID of the plug-in.offset
- The maximum number of plug-ins to retrieve.limit
- The number of plug-ins to skip from the list of plug-ins.public GetAppsResponseBody getApps(GetAppsRequest request)
request
- the request parameters. See GetAppsRequest
GetAppsResponseBody
public List<Plugin> getRequiredPlugins()
public List<Plugin> getRequiredPlugins(Long offset, Long limit)
offset
- The number of plug-ins to skip from the list of required plug-ins.limit
- The maximum number of plug-ins to retrieve.public GetRequiredPluginsResponseBody getRequiredPlugins(GetRequiredPluginsRequest request)
request
- the request parameters. See GetRequiredPluginsRequest
GetRequiredPluginsResponseBody