Office365GroupsClient Class

Definition

Typed client for office365groups connector.

public class Office365GroupsClient : Azure.Connectors.Sdk.ConnectorClientBase
type Office365GroupsClient = class
    inherit ConnectorClientBase
Public Class Office365GroupsClient
Inherits ConnectorClientBase
Inheritance
Office365GroupsClient

Constructors

Name Description
Office365GroupsClient()
Office365GroupsClient(String)

Creates a new Office365GroupsClient with the specified connection runtime URL string. Uses ManagedIdentityCredential by default.

Office365GroupsClient(Uri, TokenCredential, ConnectorClientOptions)

Creates a new Office365GroupsClient with the specified connection runtime URL and credential.

Office365GroupsClient(Uri, TokenCredential)

Creates a new Office365GroupsClient with the specified connection runtime URL and credential.

Office365GroupsClient(Uri)

Creates a new Office365GroupsClient with the specified connection runtime URL. Uses ManagedIdentityCredential by default.

Properties

Name Description
ConnectorName
Pipeline

Gets the HTTP pipeline for making connector requests.

(Inherited from ConnectorClientBase)

Methods

Name Description
AddMemberToGroupAsync(String, String, CancellationToken)

Add member to group

CalendarDeleteItemAsync(String, String, CancellationToken)

Delete event (V2)

CallConnectorAsync(HttpMethod, String, Object, CancellationToken)

Sends a connector API request with no response body. Uses the Azure.Core HttpPipeline for retry, authentication, and diagnostics.

(Inherited from ConnectorClientBase)
CallConnectorAsync<TResponse>(HttpMethod, String, Object, CancellationToken)

Sends a connector API request and deserializes the JSON response. Uses the Azure.Core HttpPipeline for retry, authentication, and diagnostics.

(Inherited from ConnectorClientBase)
CreateCalendarEventAsync(String, UpdateCalendarEventHTMLRequest, CancellationToken)

Create a group event (V2)

Dispose() (Inherited from ConnectorClientBase)
Dispose(Boolean)

Disposes the connector client resources.

(Inherited from ConnectorClientBase)
HttpRequestAsync(Byte[], CancellationToken)

Send an HTTP request V2

ListDeletedGroupsAsync(CancellationToken)

List deleted groups

ListDeletedGroupsByOwnerAsync(CancellationToken)

List deleted groups by owner

ListGroupMembersAsync(String, Nullable<Int32>, CancellationToken)

List group members

ListGroupsAsync(Nullable<Boolean>, Nullable<Boolean>, String, Nullable<Int32>, String, CancellationToken)

List groups

ListOwnedGroupsAsync(Nullable<Boolean>, Nullable<Boolean>, CancellationToken)

List groups that I own and belong to

RemoveMemberFromGroupAsync(String, String, CancellationToken)

Remove member from group

ResolveUrl(String)

Resolves a relative path or validates an absolute URL against the connection runtime URL. When the NextLink host matches the connection URL, it's used as-is. When it doesn't match (codeless connectors like ARM return nextLink pointing to the backend host e.g. management.azure.com), the path+query is extracted and routed through the APIM proxy. This is safe because the request still goes through the connection runtime URL with API Hub auth.

(Inherited from ConnectorClientBase)
RestoreDeletedGroupAsync(String, CancellationToken)

Restore a deleted group

UpdateCalendarEventAsync(String, String, UpdateCalendarEventHTMLRequest, CancellationToken)

Update a group event

Applies to