Skip to main content

ios_apps_config

Creates, updates, deletes, gets or lists an ios_apps_config resource.

Overview

Nameios_apps_config
TypeResource
Idfirebase.firebase.ios_apps_config

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
configFileContentsstring (byte)The content of the XML configuration file.
configFilenamestringThe 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:

NameAccessible byRequired ParamsOptional ParamsDescription
get_configselectprojectsId, iosAppsIdGets 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.

NameDatatypeDescription
iosAppsIdstring
projectsIdstring

SELECT examples

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;