Cloud Organization API, gRPC: GroupMappingService.Update
Updates an existing group mapping for a federation
Errors:
- if federation is not found
In case of any error, no changes are applied to existing group mapping
This call is idempotent. The following actions do nothing:
- enabling when already enabled
- disabling when disabled
Such parts of request will be ignored. Others will be applied.
gRPC request
rpc Update (UpdateGroupMappingRequest) returns (operation.Operation)
UpdateGroupMappingRequest
{
"federationId": "string",
"updateMask": "google.protobuf.FieldMask",
"enabled": "bool"
}
Request for updating group mapping configuration
Field |
Description |
federationId |
string Required field. Federation the group mapping update is requested |
updateMask |
A set of fields that should be updated |
enabled |
bool A new state of synchronization to update (if mentioned in update_mask). |
operation.Operation
{
"id": "string",
"description": "string",
"createdAt": "google.protobuf.Timestamp",
"createdBy": "string",
"modifiedAt": "google.protobuf.Timestamp",
"done": "bool",
"metadata": {
"federationId": "string"
},
// Includes only one of the fields `error`, `response`
"error": "google.rpc.Status",
"response": {
"federationId": "string",
"enabled": "bool"
}
// end of the list of possible fields
}
An Operation resource. For more information, see Operation.
Field |
Description |
id |
string ID of the operation. |
description |
string Description of the operation. 0-256 characters long. |
createdAt |
Creation timestamp. |
createdBy |
string ID of the user or service account who initiated the operation. |
modifiedAt |
The time when the Operation resource was last modified. |
done |
bool If the value is |
metadata |
Service-specific metadata associated with the operation. |
error |
The error result of the operation in case of failure or cancellation. Includes only one of the fields The operation result. |
response |
The normal response of the operation in case of success. Includes only one of the fields The operation result. |
UpdateGroupMappingMetadata
Field |
Description |
federationId |
string |
GroupMapping
Group synchronization status for a specific federation
Absence of this object for a federation means that there is no group synchronization set of for the federation.
Field |
Description |
federationId |
string Federation id |
enabled |
bool Flag to show whether group synchronization should be enabled for this federation. |