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

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringOutput only. The resource name of the security settings. Shall be of the form groups/{group_id}/securitySettings.
memberRestrictionobjectThe Member Restriction value (id: MemberRestriction)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_security_settingsselectgroupsIdreadMaskGet Security Settings
update_security_settingsupdategroupsIdupdateMaskUpdate Security Settings

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
groupsIdstring
readMaskstring (google-fieldmask)
updateMaskstring (google-fieldmask)

SELECT examples

Get Security Settings

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

UPDATE examples

Update Security Settings

UPDATE google.cloudidentity.groups_security_settings
SET
data__memberRestriction = '{{ memberRestriction }}'
WHERE
groupsId = '{{ groupsId }}' --required
AND updateMask = '{{ updateMask}}'
RETURNING
name,
done,
error,
metadata,
response;