tipo de recurso schedulingGroupschedulingGroup resource type
Namespace: microsoft.graphNamespace: microsoft.graph
Um agrupamento lógico de usuários em um cronograma (geralmente pela função).A logical grouping of users in a schedule (usually by role).
MétodosMethods
MétodoMethod | Tipo de retornoReturn Type | DescriçãoDescription |
---|---|---|
ListarList | schedulingGroup conjuntoschedulingGroup collection | Obtenha a lista de schedulingGroups em um cronograma.Get the list of schedulingGroups in a schedule. |
CriarCreate | schedulingGroupschedulingGroup | Criar um nov schedulingGroup.Create a new schedulingGroup. |
ObterGet | schedulingGroupschedulingGroup | Obtenha um schedulingGroup por ID.Get a schedulingGroup by ID. |
DeleteDelete | NenhumNone | Marque schedulingGroup como inativo.Mark schedulingGroup as inactive. |
SubstituirReplace | schedulingGroupschedulingGroup | Substituir schedulingGroup.Replace a schedulingGroup. |
PropriedadesProperties
NomeName | TipoType | DescriçãoDescription |
---|---|---|
idid | string |
ID do schedulingGroup.ID of the schedulingGroup. |
displayNamedisplayName | string |
O nome de exibição doschedulingGroup.The display name for the schedulingGroup. Obrigatório.Required. |
isActiveisActive | bool |
Indica se o schedulingGroup pode ser usada na criação de novas entidades ou atualizar as existentes.Indicates whether the schedulingGroup can be used when creating new entities or updating existing ones. Obrigatório.Required. |
userIdsuserIds | collection(string) |
A lista de IDs de usuários que são membros doschedulingGroup.The list of user IDs that are a member of the schedulingGroup. Obrigatório.Required. |
createdDateTimecreatedDateTime | DateTimeOffset |
O carimbo de hora em que esse schedulingGroup foi criado pela primeira vez.The time stamp in which this schedulingGroup was first created. O tipo Timestamp representa informações de data e hora usando o formato ISO 8601 e está sempre no horário UTC.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. Por exemplo, meia-noite em UTC no dia 1º de janeiro de 2014 teria esta aparência: '2014-01-01T00:00:00Z'.For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. |
lastModifiedDateTimelastModifiedDateTime | DateTimeOffset |
O carimbo de hora em que esse schedulingGroup foi criado pela última vez.The time stamp in which this schedulingGroup was last updated. O tipo Timestamp representa informações de data e hora usando o formato ISO 8601 e está sempre no horário UTC.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. Por exemplo, meia-noite em UTC no dia 1º de janeiro de 2014 teria esta aparência: '2014-01-01T00:00:00Z'.For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. |
lastModifiedBylastModifiedBy | identitySetidentitySet | A identidade da última atualização desse schedulingGroup.The identity that last updated this schedulingGroup. |
Representação JSONJSON representation
Veja a seguir uma representação JSON do recurso.The following is a JSON representation of the resource.
{
"id": "string (identifier)",
"createdDateTime": "String (timestamp)",
"lastModifiedDateTime": "String (timestamp)",
"displayName": "String",
"isActive": true,
"userIds": ["String (identifier)"],
"lastModifiedBy":{"@odata.type":"microsoft.graph.identitySet"}
}