Skip to main content

iap_iap_settings

Creates, updates, deletes, gets or lists a iap_iap_settings resource.

Overview

Nameiap_iap_settings
TypeResource
Idgoogle.iap.iap_iap_settings

Fields

NameDatatypeDescription
namestringRequired. The resource name of the IAP protected resource.
accessSettingsobjectAccess related settings for IAP protected apps.
applicationSettingsobjectWrapper over application specific settings for IAP.

Methods

NameAccessible byRequired ParamsDescription
get_iap_settingsSELECTv1IdGets the IAP settings on a particular IAP protected resource.
update_iap_settingsUPDATEv1IdUpdates the IAP settings on a particular IAP protected resource. It replaces all fields unless the update_mask is set.

SELECT examples

Gets the IAP settings on a particular IAP protected resource.

SELECT
name,
accessSettings,
applicationSettings
FROM google.iap.iap_iap_settings
WHERE v1Id = '{{ v1Id }}';

UPDATE example

Updates a iap_iap_settings resource.

/*+ update */
UPDATE google.iap.iap_iap_settings
SET
name = '{{ name }}',
accessSettings = '{{ accessSettings }}',
applicationSettings = '{{ applicationSettings }}'
WHERE
v1Id = '{{ v1Id }}';