Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/kiota-lock.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"descriptionHash": "B243F90AAC3F548EAA1D4BB9C012663E5F123A401E193B25D219B7D016381FF78B94701C2AF3F0DBDF12C8E8952F4095F9956FF17DE3320747B1A1BB91287751",
"descriptionHash": "C00D26F092ED047E2B673F4D4AECAB01A3187818C66466C54F2F67BB43DC7762A57476FC6DB2C95F213034E60A57374E84B2B6A01F223BF7D23A0BB155BCA47D",
"descriptionLocation": "../../msgraph-metadata/clean_v10_openapi/openapi.yaml",
"lockFileVersion": "1.0.0",
"kiotaVersion": "1.30.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ export interface FederatedIdentityCredentialsRequestBuilder extends BaseRequestB
*/
byFederatedIdentityCredentialId(federatedIdentityCredentialId: string) : FederatedIdentityCredentialItemRequestBuilder;
/**
* Get a list of the federatedIdentityCredential objects and their properties.
* Get a list of the federatedIdentityCredential objects and their properties assigned to an application.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<FederatedIdentityCredentialCollectionResponse>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/application-list-federatedidentitycredentials?view=graph-rest-1.0|Find more info here}
* @see {@link https://learn.microsoft.com/graph/api/federatedidentitycredential-list?view=graph-rest-1.0|Find more info here}
*/
get(requestConfiguration?: RequestConfiguration<FederatedIdentityCredentialsRequestBuilderGetQueryParameters> | undefined) : Promise<FederatedIdentityCredentialCollectionResponse | undefined>;
/**
Expand All @@ -40,11 +40,11 @@ export interface FederatedIdentityCredentialsRequestBuilder extends BaseRequestB
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<FederatedIdentityCredential>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/application-post-federatedidentitycredentials?view=graph-rest-1.0|Find more info here}
* @see {@link https://learn.microsoft.com/graph/api/federatedidentitycredential-post?view=graph-rest-1.0|Find more info here}
*/
post(body: FederatedIdentityCredential, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<FederatedIdentityCredential | undefined>;
/**
* Get a list of the federatedIdentityCredential objects and their properties.
* Get a list of the federatedIdentityCredential objects and their properties assigned to an application.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
Expand All @@ -58,7 +58,7 @@ export interface FederatedIdentityCredentialsRequestBuilder extends BaseRequestB
toPostRequestInformation(body: FederatedIdentityCredential, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
}
/**
* Get a list of the federatedIdentityCredential objects and their properties.
* Get a list of the federatedIdentityCredential objects and their properties assigned to an application.
*/
export interface FederatedIdentityCredentialsRequestBuilderGetQueryParameters {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export interface FederatedIdentityCredentialItemRequestBuilder extends BaseReque
*/
delete(requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
/**
* Read the properties and relationships of a federatedIdentityCredential object.
* Read the properties and relationships of a federatedIdentityCredential object assigned to an application.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<FederatedIdentityCredential>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
Expand All @@ -43,7 +43,7 @@ export interface FederatedIdentityCredentialItemRequestBuilder extends BaseReque
*/
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
/**
* Read the properties and relationships of a federatedIdentityCredential object.
* Read the properties and relationships of a federatedIdentityCredential object assigned to an application.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
Expand All @@ -57,7 +57,7 @@ export interface FederatedIdentityCredentialItemRequestBuilder extends BaseReque
toPatchRequestInformation(body: FederatedIdentityCredential, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
}
/**
* Read the properties and relationships of a federatedIdentityCredential object.
* Read the properties and relationships of a federatedIdentityCredential object assigned to an application.
*/
export interface FederatedIdentityCredentialItemRequestBuilderGetQueryParameters {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export interface FederatedIdentityCredentialsWithNameRequestBuilder extends Base
*/
delete(requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
/**
* Read the properties and relationships of a federatedIdentityCredential object.
* Read the properties and relationships of a federatedIdentityCredential object assigned to an application.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<FederatedIdentityCredential>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
Expand All @@ -43,7 +43,7 @@ export interface FederatedIdentityCredentialsWithNameRequestBuilder extends Base
*/
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
/**
* Read the properties and relationships of a federatedIdentityCredential object.
* Read the properties and relationships of a federatedIdentityCredential object assigned to an application.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
Expand All @@ -57,7 +57,7 @@ export interface FederatedIdentityCredentialsWithNameRequestBuilder extends Base
toPatchRequestInformation(body: FederatedIdentityCredential, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
}
/**
* Read the properties and relationships of a federatedIdentityCredential object.
* Read the properties and relationships of a federatedIdentityCredential object assigned to an application.
*/
export interface FederatedIdentityCredentialsWithNameRequestBuilderGetQueryParameters {
/**
Expand Down
7 changes: 4 additions & 3 deletions packages/msgraph-sdk-places/places/graphBuilding/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,22 @@ export interface GraphBuildingRequestBuilder extends BaseRequestBuilder<GraphBui
*/
get count(): CountRequestBuilder;
/**
* Get the items of type microsoft.graph.building in the microsoft.graph.place collection
* Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:- List all buildings.- List all floors.- List all sections.- List all desks.- List all rooms.- List all workspaces.- List all room lists.- List rooms in a specific room list.- List workspaces in a specific room list.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<BuildingCollectionResponse>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0|Find more info here}
*/
get(requestConfiguration?: RequestConfiguration<GraphBuildingRequestBuilderGetQueryParameters> | undefined) : Promise<BuildingCollectionResponse | undefined>;
/**
* Get the items of type microsoft.graph.building in the microsoft.graph.place collection
* Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:- List all buildings.- List all floors.- List all sections.- List all desks.- List all rooms.- List all workspaces.- List all room lists.- List rooms in a specific room list.- List workspaces in a specific room list.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<GraphBuildingRequestBuilderGetQueryParameters> | undefined) : RequestInformation;
}
/**
* Get the items of type microsoft.graph.building in the microsoft.graph.place collection
* Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:- List all buildings.- List all floors.- List all sections.- List all desks.- List all rooms.- List all workspaces.- List all room lists.- List rooms in a specific room list.- List workspaces in a specific room list.
*/
export interface GraphBuildingRequestBuilderGetQueryParameters {
/**
Expand Down
7 changes: 4 additions & 3 deletions packages/msgraph-sdk-places/places/graphDesk/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,22 @@ export interface GraphDeskRequestBuilder extends BaseRequestBuilder<GraphDeskReq
*/
get count(): CountRequestBuilder;
/**
* Get the items of type microsoft.graph.desk in the microsoft.graph.place collection
* Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:- List all buildings.- List all floors.- List all sections.- List all desks.- List all rooms.- List all workspaces.- List all room lists.- List rooms in a specific room list.- List workspaces in a specific room list.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<DeskCollectionResponse>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0|Find more info here}
*/
get(requestConfiguration?: RequestConfiguration<GraphDeskRequestBuilderGetQueryParameters> | undefined) : Promise<DeskCollectionResponse | undefined>;
/**
* Get the items of type microsoft.graph.desk in the microsoft.graph.place collection
* Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:- List all buildings.- List all floors.- List all sections.- List all desks.- List all rooms.- List all workspaces.- List all room lists.- List rooms in a specific room list.- List workspaces in a specific room list.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<GraphDeskRequestBuilderGetQueryParameters> | undefined) : RequestInformation;
}
/**
* Get the items of type microsoft.graph.desk in the microsoft.graph.place collection
* Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:- List all buildings.- List all floors.- List all sections.- List all desks.- List all rooms.- List all workspaces.- List all room lists.- List rooms in a specific room list.- List workspaces in a specific room list.
*/
export interface GraphDeskRequestBuilderGetQueryParameters {
/**
Expand Down
7 changes: 4 additions & 3 deletions packages/msgraph-sdk-places/places/graphFloor/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,22 @@ export interface GraphFloorRequestBuilder extends BaseRequestBuilder<GraphFloorR
*/
get count(): CountRequestBuilder;
/**
* Get the items of type microsoft.graph.floor in the microsoft.graph.place collection
* Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:- List all buildings.- List all floors.- List all sections.- List all desks.- List all rooms.- List all workspaces.- List all room lists.- List rooms in a specific room list.- List workspaces in a specific room list.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<FloorCollectionResponse>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0|Find more info here}
*/
get(requestConfiguration?: RequestConfiguration<GraphFloorRequestBuilderGetQueryParameters> | undefined) : Promise<FloorCollectionResponse | undefined>;
/**
* Get the items of type microsoft.graph.floor in the microsoft.graph.place collection
* Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:- List all buildings.- List all floors.- List all sections.- List all desks.- List all rooms.- List all workspaces.- List all room lists.- List rooms in a specific room list.- List workspaces in a specific room list.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<GraphFloorRequestBuilderGetQueryParameters> | undefined) : RequestInformation;
}
/**
* Get the items of type microsoft.graph.floor in the microsoft.graph.place collection
* Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:- List all buildings.- List all floors.- List all sections.- List all desks.- List all rooms.- List all workspaces.- List all room lists.- List rooms in a specific room list.- List workspaces in a specific room list.
*/
export interface GraphFloorRequestBuilderGetQueryParameters {
/**
Expand Down
6 changes: 3 additions & 3 deletions packages/msgraph-sdk-places/places/graphRoom/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,22 @@ export interface GraphRoomRequestBuilder extends BaseRequestBuilder<GraphRoomReq
*/
get count(): CountRequestBuilder;
/**
* Get a collection of the specified type of place objects defined in the tenant. For example, you can get all the rooms, all the room lists, or the rooms in a specific room list in the tenant. A place object can be one of the following types: Both room and roomList are derived from the place object. By default, this operation returns 100 places per page. Compared with the findRooms and findRoomLists functions, this operation returns a richer payload for rooms and room lists. See details for how they compare.
* Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:- List all buildings.- List all floors.- List all sections.- List all desks.- List all rooms.- List all workspaces.- List all room lists.- List rooms in a specific room list.- List workspaces in a specific room list.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<RoomCollectionResponse>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0|Find more info here}
*/
get(requestConfiguration?: RequestConfiguration<GraphRoomRequestBuilderGetQueryParameters> | undefined) : Promise<RoomCollectionResponse | undefined>;
/**
* Get a collection of the specified type of place objects defined in the tenant. For example, you can get all the rooms, all the room lists, or the rooms in a specific room list in the tenant. A place object can be one of the following types: Both room and roomList are derived from the place object. By default, this operation returns 100 places per page. Compared with the findRooms and findRoomLists functions, this operation returns a richer payload for rooms and room lists. See details for how they compare.
* Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:- List all buildings.- List all floors.- List all sections.- List all desks.- List all rooms.- List all workspaces.- List all room lists.- List rooms in a specific room list.- List workspaces in a specific room list.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<GraphRoomRequestBuilderGetQueryParameters> | undefined) : RequestInformation;
}
/**
* Get a collection of the specified type of place objects defined in the tenant. For example, you can get all the rooms, all the room lists, or the rooms in a specific room list in the tenant. A place object can be one of the following types: Both room and roomList are derived from the place object. By default, this operation returns 100 places per page. Compared with the findRooms and findRoomLists functions, this operation returns a richer payload for rooms and room lists. See details for how they compare.
* Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:- List all buildings.- List all floors.- List all sections.- List all desks.- List all rooms.- List all workspaces.- List all room lists.- List rooms in a specific room list.- List workspaces in a specific room list.
*/
export interface GraphRoomRequestBuilderGetQueryParameters {
/**
Expand Down
Loading
Loading