iap_iap_settings
Creates, updates, deletes, gets or lists a iap_iap_settings
resource.
Overview
Name | iap_iap_settings |
Type | Resource |
Id | google.iap.iap_iap_settings |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Required. The resource name of the IAP protected resource. |
accessSettings | object | Access related settings for IAP protected apps. |
applicationSettings | object | Wrapper over application specific settings for IAP. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get_iap_settings | SELECT | v1Id | Gets the IAP settings on a particular IAP protected resource. |
update_iap_settings | UPDATE | v1Id | Updates 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 }}';