public class Appengine.Apps.Services
extends java.lang.Object
| Modifier and Type | Class and Description |
|---|---|
class |
Appengine.Apps.Services.Delete |
class |
Appengine.Apps.Services.Get |
class |
Appengine.Apps.Services.List |
class |
Appengine.Apps.Services.Patch |
class |
Appengine.Apps.Services.Versions
The "versions" collection of methods.
|
| Constructor and Description |
|---|
Services() |
| Modifier and Type | Method and Description |
|---|---|
Appengine.Apps.Services.Delete |
delete(java.lang.String appsId,
java.lang.String servicesId)
Deletes the specified service and all enclosed versions.
|
Appengine.Apps.Services.Get |
get(java.lang.String appsId,
java.lang.String servicesId)
Gets the current configuration of the specified service.
|
Appengine.Apps.Services.List |
list(java.lang.String appsId)
Lists all the services in the application.
|
Appengine.Apps.Services.Patch |
patch(java.lang.String appsId,
java.lang.String servicesId,
Service content)
Updates the configuration of the specified service.
|
Appengine.Apps.Services.Versions |
versions()
An accessor for creating requests from the Versions collection.
|
public Appengine.Apps.Services.Delete delete(java.lang.String appsId, java.lang.String servicesId) throws java.io.IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.appsId - Part of `name`. Name of the resource requested. Example: apps/myapp/services/default.servicesId - Part of `name`. See documentation of `appsId`.java.io.IOExceptionpublic Appengine.Apps.Services.Get get(java.lang.String appsId, java.lang.String servicesId) throws java.io.IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.appsId - Part of `name`. Name of the resource requested. Example: apps/myapp/services/default.servicesId - Part of `name`. See documentation of `appsId`.java.io.IOExceptionpublic Appengine.Apps.Services.List list(java.lang.String appsId) throws java.io.IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.appsId - Part of `parent`. Name of the parent Application resource. Example: apps/myapp.java.io.IOExceptionpublic Appengine.Apps.Services.Patch patch(java.lang.String appsId, java.lang.String servicesId, Service content) throws java.io.IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.appsId - Part of `name`. Name of the resource to update. Example: apps/myapp/services/default.servicesId - Part of `name`. See documentation of `appsId`.content - the Servicejava.io.IOExceptionpublic Appengine.Apps.Services.Versions versions()
The typical use is:
Appengine appengine = new Appengine(...);Appengine.Versions.List request = appengine.versions().list(parameters ...)