| java.lang.Object | |
| ↳ | com.google.firebase.projectmanagement.IosApp |
An instance of this class is a reference to an iOS App within a Firebase Project; it can be used to query detailed information about the App, modify the display name of the App, or download the configuration file for the App.
Note: the methods in this class make RPCs.
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| String |
getConfig()
Retrieves the configuration artifact associated with this iOS App.
| ||||||||||
| ApiFuture<String> |
getConfigAsync()
Asynchronously retrieves the configuration artifact associated with this iOS App.
| ||||||||||
| IosAppMetadata |
getMetadata()
Retrieves detailed information about this iOS App.
| ||||||||||
| ApiFuture<IosAppMetadata> |
getMetadataAsync()
Asynchronously retrieves information about this iOS App.
| ||||||||||
| void |
setDisplayName(String newDisplayName)
Updates the Display Name attribute of this iOS App to the one given.
| ||||||||||
| ApiFuture<Void> |
setDisplayNameAsync(String newDisplayName)
Asynchronously updates the Display Name attribute of this iOS App to the one given.
| ||||||||||
| String | toString() | ||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
Retrieves the configuration artifact associated with this iOS App.
String containing the contents of the artifact| FirebaseProjectManagementException | if there was an error during the RPC |
|---|
Asynchronously retrieves the configuration artifact associated with this iOS App.
ApiFuture of a UTF-8 encoded String containing the contents of the
artifact
Retrieves detailed information about this iOS App.
IosAppMetadata instance describing this App| FirebaseProjectManagementException | if there was an error during the RPC |
|---|
Asynchronously retrieves information about this iOS App.
ApiFuture containing an IosAppMetadata instance describing this App
Updates the Display Name attribute of this iOS App to the one given.
| FirebaseProjectManagementException | if there was an error during the RPC |
|---|
Asynchronously updates the Display Name attribute of this iOS App to the one given.