Skip to main content

groups_security_settings

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

Overview

Namegroups_security_settings
TypeResource
Idgoogle.cloudidentity.groups_security_settings

Fields

NameDatatypeDescription
namestringOutput only. The resource name of the security settings. Shall be of the form groups/{group_id}/securitySettings.
memberRestrictionobjectThe definition of MemberRestriction

Methods

NameAccessible byRequired ParamsDescription
get_security_settingsSELECTgroupsIdGet Security Settings
update_security_settingsUPDATEgroupsIdUpdate Security Settings

SELECT examples

Get Security Settings

SELECT
name,
memberRestriction
FROM google.cloudidentity.groups_security_settings
WHERE groupsId = '{{ groupsId }}';

UPDATE example

Updates a groups_security_settings resource.

/*+ update */
UPDATE google.cloudidentity.groups_security_settings
SET
memberRestriction = '{{ memberRestriction }}'
WHERE
groupsId = '{{ groupsId }}';