Show / Hide Table of Contents

Class SpacesResource.PatchRequest

Updates a space. For an example, see Update a space. If you're updating the displayName field and receive the error message ALREADY_EXISTS, try a different display name.. An existing space within the Google Workspace organization might already use this display name. Supports the following types of authentication: - App authentication with administrator approval in Developer Preview and one of the following authorization scopes: - https://www.googleapis.com/auth/chat.app.spaces - User authentication with one of the following authorization scopes: - https://www.googleapis.com/auth/chat.spaces - https://www.googleapis.com/auth/chat.import (import mode spaces only) - User authentication grants administrator privileges when an administrator account authenticates, use_admin_access is true, and the following authorization scopes is used: - https://www.googleapis.com/auth/chat.admin.spaces

Inheritance
object
ClientServiceRequest
ClientServiceRequest<Space>
HangoutsChatBaseServiceRequest<Space>
SpacesResource.PatchRequest
Implements
IClientServiceRequest<Space>
IClientServiceRequest
Inherited Members
HangoutsChatBaseServiceRequest<Space>.Xgafv
HangoutsChatBaseServiceRequest<Space>.AccessToken
HangoutsChatBaseServiceRequest<Space>.Alt
HangoutsChatBaseServiceRequest<Space>.Callback
HangoutsChatBaseServiceRequest<Space>.Fields
HangoutsChatBaseServiceRequest<Space>.Key
HangoutsChatBaseServiceRequest<Space>.OauthToken
HangoutsChatBaseServiceRequest<Space>.PrettyPrint
HangoutsChatBaseServiceRequest<Space>.QuotaUser
HangoutsChatBaseServiceRequest<Space>.UploadType
HangoutsChatBaseServiceRequest<Space>.UploadProtocol
ClientServiceRequest<Space>.Execute()
ClientServiceRequest<Space>.ExecuteAsStream()
ClientServiceRequest<Space>.ExecuteAsync()
ClientServiceRequest<Space>.ExecuteAsync(CancellationToken)
ClientServiceRequest<Space>.ExecuteAsStreamAsync()
ClientServiceRequest<Space>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<Space>.CreateRequest(bool?)
ClientServiceRequest<Space>.GenerateRequestUri()
ClientServiceRequest<Space>.GetDefaultETagAction(string)
ClientServiceRequest<Space>.ETagAction
ClientServiceRequest<Space>.ModifyRequest
ClientServiceRequest<Space>.ValidateParameters
ClientServiceRequest<Space>.ApiVersion
ClientServiceRequest<Space>.RequestParameters
ClientServiceRequest<Space>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.HangoutsChat.v1
Assembly: Google.Apis.HangoutsChat.v1.dll
Syntax
public class SpacesResource.PatchRequest : HangoutsChatBaseServiceRequest<Space>, IClientServiceRequest<Space>, IClientServiceRequest

Constructors

PatchRequest(IClientService, Space, string)

Constructs a new Patch request.

Declaration
public PatchRequest(IClientService service, Space body, string name)
Parameters
Type Name Description
IClientService service
Space body
string name

Properties

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
string
Overrides
ClientServiceRequest<Space>.HttpMethod

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
string
Overrides
ClientServiceRequest<Space>.MethodName

Name

Identifier. Resource name of the space. Format: spaces/{space} Where {space} represents the system-assigned ID for the space. You can obtain the space ID by calling the spaces.list() method or from the space URL. For example, if the space URL is https://mail.google.com/mail/u/0/#chat/space/AAAAAAAAA, the space ID is AAAAAAAAA.

Declaration
[RequestParameter("name", RequestParameterType.Path)]
public virtual string Name { get; }
Property Value
Type Description
string

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
string
Overrides
ClientServiceRequest<Space>.RestPath

UpdateMask

Required. The updated field paths, comma separated if there are multiple. You can update the following fields for a space: space_details: Updates the space's description. Supports up to 150 characters. display_name: Only supports updating the display name for spaces where spaceType field is SPACE. If you receive the error message ALREADY_EXISTS, try a different value. An existing space within the Google Workspace organization might already use this display name. space_type: Only supports changing a GROUP_CHAT space type to SPACE. Include display_name together with space_type in the update mask and ensure that the specified space has a non-empty display name and the SPACE space type. Including the space_type mask and the SPACE type in the specified space when updating the display name is optional if the existing space already has the SPACE type. Trying to update the space type in other ways results in an invalid argument error. space_type is not supported with useAdminAccess. space_history_state: Updates space history settings by turning history on or off for the space. Only supported if history settings are enabled for the Google Workspace organization. To update the space history state, you must omit all other field masks in your request. space_history_state is not supported with useAdminAccess. access_settings.audience: Updates the access setting of who can discover the space, join the space, and preview the messages in named space where spaceType field is SPACE. If the existing space has a target audience, you can remove the audience and restrict space access by omitting a value for this field mask. To update access settings for a space, the authenticating user must be a space manager and omit all other field masks in your request. You can't update this field if the space is in import mode. To learn more, see Make a space discoverable to specific users. access_settings.audience is not supported with useAdminAccess. permission_settings: Supports changing the permission settings of a space. When updating permission settings, you can only specify permissionSettings field masks; you cannot update other field masks at the same time. permissionSettings is not supported with useAdminAccess. The supported field masks include: - permission_settings.manageMembersAndGroups - permission_settings.modifySpaceDetails - permission_settings.toggleHistory - permission_settings.useAtMentionAll - permission_settings.manageApps - permission_settings.manageWebhooks - permission_settings.replyMessages

Declaration
[RequestParameter("updateMask", RequestParameterType.Query)]
public virtual object UpdateMask { get; set; }
Property Value
Type Description
object

UseAdminAccess

Optional. When true, the method runs using the user's Google Workspace administrator privileges. The calling user must be a Google Workspace administrator with the manage chat and spaces conversations privilege. Requires the chat.admin.spaces OAuth 2.0 scope. Some FieldMask values are not supported using admin access. For details, see the description of update_mask.

Declaration
[RequestParameter("useAdminAccess", RequestParameterType.Query)]
public virtual bool? UseAdminAccess { get; set; }
Property Value
Type Description
bool?

Methods

GetBody()

Returns the body of the request.

Declaration
protected override object GetBody()
Returns
Type Description
object
Overrides
ClientServiceRequest<Space>.GetBody()

InitParameters()

Initializes Patch parameter list.

Declaration
protected override void InitParameters()
Overrides
HangoutsChatBaseServiceRequest<Space>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In this article
Back to top Generated by DocFX