@@ -678,18 +678,18 @@ public static OpenApiDocument CreateOpenApiDocument()
678678 }
679679 }
680680 } ;
681- document . Paths [ getTeamsActivityByPeriodPath ] . Operations [ OperationType . Get ] . Tags ! . Add ( new OpenApiTagReference ( "reports.Functions" , document ) ) ;
682- document . Paths [ getTeamsActivityByDatePath ] . Operations [ OperationType . Get ] . Tags ! . Add ( new OpenApiTagReference ( "reports.Functions" , document ) ) ;
683- document . Paths [ usersPath ] . Operations [ OperationType . Get ] . Tags ! . Add ( new OpenApiTagReference ( "users.user" , document ) ) ;
684- document . Paths [ usersByIdPath ] . Operations [ OperationType . Get ] . Tags ! . Add ( new OpenApiTagReference ( "users.user" , document ) ) ;
685- document . Paths [ usersByIdPath ] . Operations [ OperationType . Patch ] . Tags ! . Add ( new OpenApiTagReference ( "users.user" , document ) ) ;
686- document . Paths [ messagesByIdPath ] . Operations [ OperationType . Get ] . Tags ! . Add ( new OpenApiTagReference ( "users.message" , document ) ) ;
687- document . Paths [ administrativeUnitRestorePath ] . Operations [ OperationType . Post ] . Tags ! . Add ( new OpenApiTagReference ( "administrativeUnits.Actions" , document ) ) ;
688- document . Paths [ logoPath ] . Operations [ OperationType . Put ] . Tags ! . Add ( new OpenApiTagReference ( "applications.application" , document ) ) ;
689- document . Paths [ securityProfilesPath ] . Operations [ OperationType . Get ] . Tags ! . Add ( new OpenApiTagReference ( "security.hostSecurityProfile" , document ) ) ;
690- document . Paths [ communicationsCallsKeepAlivePath ] . Operations [ OperationType . Post ] . Tags ! . Add ( new OpenApiTagReference ( "communications.Actions" , document ) ) ;
691- document . Paths [ eventsDeltaPath ] . Operations [ OperationType . Get ] . Tags ! . Add ( new OpenApiTagReference ( "groups.Functions" , document ) ) ;
692- document . Paths [ refPath ] . Operations [ OperationType . Get ] . Tags ! . Add ( new OpenApiTagReference ( "applications.directoryObject" , document ) ) ;
681+ document . Paths [ getTeamsActivityByPeriodPath ] . Operations [ OperationType . Get ] . Tags = new HashSet < OpenApiTagReference > { new OpenApiTagReference ( "reports.Functions" , document ) } ;
682+ document . Paths [ getTeamsActivityByDatePath ] . Operations [ OperationType . Get ] . Tags = new HashSet < OpenApiTagReference > { new OpenApiTagReference ( "reports.Functions" , document ) } ;
683+ document . Paths [ usersPath ] . Operations [ OperationType . Get ] . Tags = new HashSet < OpenApiTagReference > { new OpenApiTagReference ( "users.user" , document ) } ;
684+ document . Paths [ usersByIdPath ] . Operations [ OperationType . Get ] . Tags = new HashSet < OpenApiTagReference > { new OpenApiTagReference ( "users.user" , document ) } ;
685+ document . Paths [ usersByIdPath ] . Operations [ OperationType . Patch ] . Tags = new HashSet < OpenApiTagReference > { new OpenApiTagReference ( "users.user" , document ) } ;
686+ document . Paths [ messagesByIdPath ] . Operations [ OperationType . Get ] . Tags = new HashSet < OpenApiTagReference > { new OpenApiTagReference ( "users.message" , document ) } ;
687+ document . Paths [ administrativeUnitRestorePath ] . Operations [ OperationType . Post ] . Tags = new HashSet < OpenApiTagReference > { new OpenApiTagReference ( "administrativeUnits.Actions" , document ) } ;
688+ document . Paths [ logoPath ] . Operations [ OperationType . Put ] . Tags = new HashSet < OpenApiTagReference > { new OpenApiTagReference ( "applications.application" , document ) } ;
689+ document . Paths [ securityProfilesPath ] . Operations [ OperationType . Get ] . Tags = new HashSet < OpenApiTagReference > { new OpenApiTagReference ( "security.hostSecurityProfile" , document ) } ;
690+ document . Paths [ communicationsCallsKeepAlivePath ] . Operations [ OperationType . Post ] . Tags = new HashSet < OpenApiTagReference > { new OpenApiTagReference ( "communications.Actions" , document ) } ;
691+ document . Paths [ eventsDeltaPath ] . Operations [ OperationType . Get ] . Tags = new HashSet < OpenApiTagReference > { new OpenApiTagReference ( "groups.Functions" , document ) } ;
692+ document . Paths [ refPath ] . Operations [ OperationType . Get ] . Tags = new HashSet < OpenApiTagReference > { new OpenApiTagReference ( "applications.directoryObject" , document ) } ;
693693 ( ( OpenApiSchema ) document . Paths [ usersPath ] . Operations [ OperationType . Get ] . Responses ! [ "200" ] . Content [ applicationJsonMediaType ] . Schema ! . Properties [ "value" ] ) . Items = new OpenApiSchemaReference ( "microsoft.graph.user" , document ) ;
694694 document . Paths [ usersByIdPath ] . Operations [ OperationType . Get ] . Responses ! [ "200" ] . Content [ applicationJsonMediaType ] . Schema = new OpenApiSchemaReference ( "microsoft.graph.user" , document ) ;
695695 document . Paths [ messagesByIdPath ] . Operations [ OperationType . Get ] . Responses ! [ "200" ] . Content [ applicationJsonMediaType ] . Schema = new OpenApiSchemaReference ( "microsoft.graph.message" , document ) ;
0 commit comments