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": "F2C5ED6C8B2FD4B16893049E6068C2C92DE33A33B457676A7B43C60DF09A4248608BD4D1929DAD9C69017AD4D6724FE0D1C5FBE9CE92271AFFDE28EB8DFBCDBB",
"descriptionHash": "96DE572AA9511C83B3F1C8B9E3AAA4EB220A39A3302075B70AB2DB8AF1AA3E6F8B2D64C3BA2CEC0615DAD94372C20B630586FD26B013F857011140F044592AA4",
"descriptionLocation": "../../msgraph-metadata/clean_beta_openapi/openapi.yaml",
"lockFileVersion": "1.0.0",
"kiotaVersion": "1.29.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,36 +27,38 @@ export interface ExternalPartnersRequestBuilder extends BaseRequestBuilder<Exter
*/
byCloudPcExternalPartnerId(cloudPcExternalPartnerId: string) : CloudPcExternalPartnerItemRequestBuilder;
/**
* Get externalPartners from deviceManagement
* Get a list of the cloudPcExternalPartner objects and their properties.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<CloudPcExternalPartnerCollectionResponse>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/virtualendpoint-list-externalpartners?view=graph-rest-beta|Find more info here}
*/
get(requestConfiguration?: RequestConfiguration<ExternalPartnersRequestBuilderGetQueryParameters> | undefined) : Promise<CloudPcExternalPartnerCollectionResponse | undefined>;
/**
* Create new navigation property to externalPartners for deviceManagement
* Create a new cloudPcExternalPartner object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<CloudPcExternalPartner>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/virtualendpoint-post-externalpartners?view=graph-rest-beta|Find more info here}
*/
post(body: CloudPcExternalPartner, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<CloudPcExternalPartner | undefined>;
/**
* Get externalPartners from deviceManagement
* Get a list of the cloudPcExternalPartner objects and their properties.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ExternalPartnersRequestBuilderGetQueryParameters> | undefined) : RequestInformation;
/**
* Create new navigation property to externalPartners for deviceManagement
* Create a new cloudPcExternalPartner object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toPostRequestInformation(body: CloudPcExternalPartner, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
}
/**
* Get externalPartners from deviceManagement
* Get a list of the cloudPcExternalPartner objects and their properties.
*/
export interface ExternalPartnersRequestBuilderGetQueryParameters {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,20 @@ export interface CloudPcExternalPartnerItemRequestBuilder extends BaseRequestBui
*/
delete(requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
/**
* Get externalPartners from deviceManagement
* Read the properties and relationships of a cloudPcExternalPartner object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<CloudPcExternalPartner>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/cloudpcexternalpartner-get?view=graph-rest-beta|Find more info here}
*/
get(requestConfiguration?: RequestConfiguration<CloudPcExternalPartnerItemRequestBuilderGetQueryParameters> | undefined) : Promise<CloudPcExternalPartner | undefined>;
/**
* Update the navigation property externalPartners in deviceManagement
* Update the properties of a cloudPcExternalPartner object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<CloudPcExternalPartner>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/cloudpcexternalpartner-update?view=graph-rest-beta|Find more info here}
*/
patch(body: CloudPcExternalPartner, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<CloudPcExternalPartner | undefined>;
/**
Expand All @@ -40,21 +42,21 @@ export interface CloudPcExternalPartnerItemRequestBuilder extends BaseRequestBui
*/
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
/**
* Get externalPartners from deviceManagement
* Read the properties and relationships of a cloudPcExternalPartner object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<CloudPcExternalPartnerItemRequestBuilderGetQueryParameters> | undefined) : RequestInformation;
/**
* Update the navigation property externalPartners in deviceManagement
* Update the properties of a cloudPcExternalPartner object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toPatchRequestInformation(body: CloudPcExternalPartner, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
}
/**
* Get externalPartners from deviceManagement
* Read the properties and relationships of a cloudPcExternalPartner object.
*/
export interface CloudPcExternalPartnerItemRequestBuilderGetQueryParameters {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,36 +27,37 @@ export interface FraudProtectionProvidersRequestBuilder extends BaseRequestBuild
*/
byFraudProtectionProviderId(fraudProtectionProviderId: string) : FraudProtectionProviderItemRequestBuilder;
/**
* Get fraudProtectionProviders from identity
* Represents entry point for fraud protection provider configurations for Microsoft Entra External ID tenants.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<FraudProtectionProviderCollectionResponse>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
*/
get(requestConfiguration?: RequestConfiguration<FraudProtectionProvidersRequestBuilderGetQueryParameters> | undefined) : Promise<FraudProtectionProviderCollectionResponse | undefined>;
/**
* Create new navigation property to fraudProtectionProviders for identity
* Create a new fraudProtectionProvider object. You can create one of the following subtypes that are derived from fraudProtectionProvider.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<FraudProtectionProvider>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/riskpreventioncontainer-post-fraudprotectionproviders?view=graph-rest-beta|Find more info here}
*/
post(body: FraudProtectionProvider, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<FraudProtectionProvider | undefined>;
/**
* Get fraudProtectionProviders from identity
* Represents entry point for fraud protection provider configurations for Microsoft Entra External ID tenants.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<FraudProtectionProvidersRequestBuilderGetQueryParameters> | undefined) : RequestInformation;
/**
* Create new navigation property to fraudProtectionProviders for identity
* Create a new fraudProtectionProvider object. You can create one of the following subtypes that are derived from fraudProtectionProvider.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toPostRequestInformation(body: FraudProtectionProvider, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
}
/**
* Get fraudProtectionProviders from identity
* Represents entry point for fraud protection provider configurations for Microsoft Entra External ID tenants.
*/
export interface FraudProtectionProvidersRequestBuilderGetQueryParameters {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export interface FraudProtectionProviderItemRequestBuilder extends BaseRequestBu
*/
delete(requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
/**
* Get fraudProtectionProviders from identity
* Represents entry point for fraud protection provider configurations for Microsoft Entra External ID tenants.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<FraudProtectionProvider>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
Expand All @@ -40,7 +40,7 @@ export interface FraudProtectionProviderItemRequestBuilder extends BaseRequestBu
*/
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
/**
* Get fraudProtectionProviders from identity
* Represents entry point for fraud protection provider configurations for Microsoft Entra External ID tenants.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
Expand All @@ -54,7 +54,7 @@ export interface FraudProtectionProviderItemRequestBuilder extends BaseRequestBu
toPatchRequestInformation(body: FraudProtectionProvider, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
}
/**
* Get fraudProtectionProviders from identity
* Represents entry point for fraud protection provider configurations for Microsoft Entra External ID tenants.
*/
export interface FraudProtectionProviderItemRequestBuilderGetQueryParameters {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export interface RiskPreventionRequestBuilder extends BaseRequestBuilder<RiskPre
*/
delete(requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
/**
* Get riskPrevention from identity
* Represents the entry point for fraud and risk prevention configurations in Microsoft Entra External ID, including third-party provider settings.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<RiskPreventionContainer>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
Expand All @@ -46,7 +46,7 @@ export interface RiskPreventionRequestBuilder extends BaseRequestBuilder<RiskPre
*/
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
/**
* Get riskPrevention from identity
* Represents the entry point for fraud and risk prevention configurations in Microsoft Entra External ID, including third-party provider settings.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
Expand All @@ -60,7 +60,7 @@ export interface RiskPreventionRequestBuilder extends BaseRequestBuilder<RiskPre
toPatchRequestInformation(body: RiskPreventionContainer, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
}
/**
* Get riskPrevention from identity
* Represents the entry point for fraud and risk prevention configurations in Microsoft Entra External ID, including third-party provider settings.
*/
export interface RiskPreventionRequestBuilderGetQueryParameters {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,21 +27,21 @@ export interface ExecutionScopeRequestBuilder extends BaseRequestBuilder<Executi
*/
byUserProcessingResultId(userProcessingResultId: string) : UserProcessingResultItemRequestBuilder;
/**
* The unique identifier of the Microsoft Entra identity that last modified the workflow object.
* The list of users that meet the workflowExecutionConditions of a workflow.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<UserProcessingResultCollectionResponse>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
*/
get(requestConfiguration?: RequestConfiguration<ExecutionScopeRequestBuilderGetQueryParameters> | undefined) : Promise<UserProcessingResultCollectionResponse | undefined>;
/**
* The unique identifier of the Microsoft Entra identity that last modified the workflow object.
* The list of users that meet the workflowExecutionConditions of a workflow.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ExecutionScopeRequestBuilderGetQueryParameters> | undefined) : RequestInformation;
}
/**
* The unique identifier of the Microsoft Entra identity that last modified the workflow object.
* The list of users that meet the workflowExecutionConditions of a workflow.
*/
export interface ExecutionScopeRequestBuilderGetQueryParameters {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@ import { type BaseRequestBuilder, type Parsable, type ParsableFactory, type Requ
*/
export interface UserProcessingResultItemRequestBuilder extends BaseRequestBuilder<UserProcessingResultItemRequestBuilder> {
/**
* The unique identifier of the Microsoft Entra identity that last modified the workflow object.
* The list of users that meet the workflowExecutionConditions of a workflow.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<UserProcessingResult>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
*/
get(requestConfiguration?: RequestConfiguration<UserProcessingResultItemRequestBuilderGetQueryParameters> | undefined) : Promise<UserProcessingResult | undefined>;
/**
* The unique identifier of the Microsoft Entra identity that last modified the workflow object.
* The list of users that meet the workflowExecutionConditions of a workflow.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<UserProcessingResultItemRequestBuilderGetQueryParameters> | undefined) : RequestInformation;
}
/**
* The unique identifier of the Microsoft Entra identity that last modified the workflow object.
* The list of users that meet the workflowExecutionConditions of a workflow.
*/
export interface UserProcessingResultItemRequestBuilderGetQueryParameters {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,21 +27,21 @@ export interface ExecutionScopeRequestBuilder extends BaseRequestBuilder<Executi
*/
byUserProcessingResultId(userProcessingResultId: string) : UserProcessingResultItemRequestBuilder;
/**
* The unique identifier of the Microsoft Entra identity that last modified the workflow object.
* The list of users that meet the workflowExecutionConditions of a workflow.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<UserProcessingResultCollectionResponse>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
*/
get(requestConfiguration?: RequestConfiguration<ExecutionScopeRequestBuilderGetQueryParameters> | undefined) : Promise<UserProcessingResultCollectionResponse | undefined>;
/**
* The unique identifier of the Microsoft Entra identity that last modified the workflow object.
* The list of users that meet the workflowExecutionConditions of a workflow.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ExecutionScopeRequestBuilderGetQueryParameters> | undefined) : RequestInformation;
}
/**
* The unique identifier of the Microsoft Entra identity that last modified the workflow object.
* The list of users that meet the workflowExecutionConditions of a workflow.
*/
export interface ExecutionScopeRequestBuilderGetQueryParameters {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@ import { type BaseRequestBuilder, type Parsable, type ParsableFactory, type Requ
*/
export interface UserProcessingResultItemRequestBuilder extends BaseRequestBuilder<UserProcessingResultItemRequestBuilder> {
/**
* The unique identifier of the Microsoft Entra identity that last modified the workflow object.
* The list of users that meet the workflowExecutionConditions of a workflow.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<UserProcessingResult>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
*/
get(requestConfiguration?: RequestConfiguration<UserProcessingResultItemRequestBuilderGetQueryParameters> | undefined) : Promise<UserProcessingResult | undefined>;
/**
* The unique identifier of the Microsoft Entra identity that last modified the workflow object.
* The list of users that meet the workflowExecutionConditions of a workflow.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<UserProcessingResultItemRequestBuilderGetQueryParameters> | undefined) : RequestInformation;
}
/**
* The unique identifier of the Microsoft Entra identity that last modified the workflow object.
* The list of users that meet the workflowExecutionConditions of a workflow.
*/
export interface UserProcessingResultItemRequestBuilderGetQueryParameters {
/**
Expand Down
Loading