ProjectsAndroidApps
class ProjectsAndroidApps extends Resource (View source)
The "androidApps" collection of methods.
Typical usage is:
$firebaseService = new Google\Service\FirebaseManagement(...);
$androidApps = $firebaseService->projects_androidApps;
Methods
Requests the creation of a new AndroidApp in the specified FirebaseProject.
Gets the specified AndroidApp. (androidApps.get)
Gets the configuration artifact associated with the specified AndroidApp.
Lists each AndroidApp associated with the specified FirebaseProject. The
elements are returned in no particular order, but will be a consistent view
of the Apps when additional requests are made with a pageToken
.
Updates the attributes of the specified AndroidApp. (androidApps.patch)
Removes the specified AndroidApp from the FirebaseProject.
Restores the specified AndroidApp to the FirebaseProject.
Details
Operation
create(string $parent, AndroidApp $postBody, array $optParams = [])
Requests the creation of a new AndroidApp in the specified FirebaseProject.
The result of this call is an Operation
which can be used to track the
provisioning process. The Operation
is automatically deleted after
completion, so there is no need to call DeleteOperation
.
(androidApps.create)
AndroidApp
get(string $name, array $optParams = [])
Gets the specified AndroidApp. (androidApps.get)
AndroidAppConfig
getConfig(string $name, array $optParams = [])
Gets the configuration artifact associated with the specified AndroidApp.
(androidApps.getConfig)
ListAndroidAppsResponse
listProjectsAndroidApps(string $parent, array $optParams = [])
Lists each AndroidApp associated with the specified FirebaseProject. The
elements are returned in no particular order, but will be a consistent view
of the Apps when additional requests are made with a pageToken
.
(androidApps.listProjectsAndroidApps)
AndroidApp
patch(string $name, AndroidApp $postBody, array $optParams = [])
Updates the attributes of the specified AndroidApp. (androidApps.patch)
Operation
remove(string $name, RemoveAndroidAppRequest $postBody, array $optParams = [])
Removes the specified AndroidApp from the FirebaseProject.
(androidApps.remove)
Operation
undelete(string $name, UndeleteAndroidAppRequest $postBody, array $optParams = [])
Restores the specified AndroidApp to the FirebaseProject.
(androidApps.undelete)