ios_apps_config
Creates, updates, deletes, gets or lists an ios_apps_config resource.
Overview
| Name | ios_apps_config |
| Type | Resource |
| Id | firebase.firebase.ios_apps_config |
Fields
The following fields are returned by SELECT queries:
- get_config
| Name | Datatype | Description |
|---|---|---|
configFileContents | string (byte) | The content of the XML configuration file. |
configFilename | string | The filename that the configuration artifact for the IosApp is typically saved as. For example: GoogleService-Info.plist |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_config | select | projectsId, iosAppsId | Gets the configuration artifact associated with the specified IosApp. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
iosAppsId | string | |
projectsId | string |
SELECT examples
- get_config
Gets the configuration artifact associated with the specified IosApp.
SELECT
configFileContents,
configFilename
FROM firebase.firebase.ios_apps_config
WHERE projectsId = '{{ projectsId }}' -- required
AND iosAppsId = '{{ iosAppsId }}' -- required
;