groups_security_settings
Creates, updates, deletes, gets or lists a groups_security_settings
resource.
Overview
Name | groups_security_settings |
Type | Resource |
Id | google.cloudidentity.groups_security_settings |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Output only. The resource name of the security settings. Shall be of the form groups/{group_id}/securitySettings . |
memberRestriction | object | The definition of MemberRestriction |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get_security_settings | SELECT | groupsId | Get Security Settings |
update_security_settings | UPDATE | groupsId | Update 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 }}';