All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.graph.requests.IdentityGovernanceRequestBuilder Maven / Gradle / Ivy

// Template Source: BaseEntityRequestBuilder.java.tt
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All Rights Reserved.  Licensed under the MIT License.  See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.requests;

import com.microsoft.graph.http.IRequestBuilder;
import com.microsoft.graph.core.ClientException;
import com.microsoft.graph.models.IdentityGovernance;
import java.util.Arrays;
import java.util.EnumSet;
import javax.annotation.Nullable;
import javax.annotation.Nonnull;
import com.microsoft.graph.core.IBaseClient;
import com.microsoft.graph.http.BaseRequestBuilder;

// **NOTE** This file was generated by a tool and any changes will be overwritten.

/**
 * The class for the Identity Governance Request Builder.
 */
public class IdentityGovernanceRequestBuilder extends BaseRequestBuilder {

    /**
     * The request builder for the IdentityGovernance
     *
     * @param requestUrl     the request URL
     * @param client         the service client
     * @param requestOptions the options for this request
     */
    public IdentityGovernanceRequestBuilder(@Nonnull final String requestUrl, @Nonnull final IBaseClient client, @Nullable final java.util.List requestOptions) {
        super(requestUrl, client, requestOptions);
    }

    /**
     * Creates the request
     *
     * @param requestOptions the options for this request
     * @return the IdentityGovernanceRequest instance
     */
    @Nonnull
    public IdentityGovernanceRequest buildRequest(@Nullable final com.microsoft.graph.options.Option... requestOptions) {
        return buildRequest(getOptions(requestOptions));
    }

    /**
     * Creates the request with specific requestOptions instead of the existing requestOptions
     *
     * @param requestOptions the options for this request
     * @return the IdentityGovernanceRequest instance
     */
    @Nonnull
    public IdentityGovernanceRequest buildRequest(@Nonnull final java.util.List requestOptions) {
        return new com.microsoft.graph.requests.IdentityGovernanceRequest(getRequestUrl(), getClient(), requestOptions);
    }



    /**
     * Gets the request builder for LifecycleWorkflowsContainer
     *
     * @return the LifecycleWorkflowsContainerRequestBuilder instance
     */
    @Nonnull
    public com.microsoft.graph.identitygovernance.requests.LifecycleWorkflowsContainerRequestBuilder lifecycleWorkflows() {
        return new com.microsoft.graph.identitygovernance.requests.LifecycleWorkflowsContainerRequestBuilder(getRequestUrlWithAdditionalSegment("lifecycleWorkflows"), getClient(), null);
    }

    /**
     * Gets the request builder for AccessReviewSet
     *
     * @return the AccessReviewSetRequestBuilder instance
     */
    @Nonnull
    public com.microsoft.graph.requests.AccessReviewSetRequestBuilder accessReviews() {
        return new com.microsoft.graph.requests.AccessReviewSetRequestBuilder(getRequestUrlWithAdditionalSegment("accessReviews"), getClient(), null);
    }

    /**
     * Gets the request builder for AppConsentApprovalRoute
     *
     * @return the AppConsentApprovalRouteRequestBuilder instance
     */
    @Nonnull
    public com.microsoft.graph.requests.AppConsentApprovalRouteRequestBuilder appConsent() {
        return new com.microsoft.graph.requests.AppConsentApprovalRouteRequestBuilder(getRequestUrlWithAdditionalSegment("appConsent"), getClient(), null);
    }

    /**
     * Gets the request builder for TermsOfUseContainer
     *
     * @return the TermsOfUseContainerRequestBuilder instance
     */
    @Nonnull
    public com.microsoft.graph.requests.TermsOfUseContainerRequestBuilder termsOfUse() {
        return new com.microsoft.graph.requests.TermsOfUseContainerRequestBuilder(getRequestUrlWithAdditionalSegment("termsOfUse"), getClient(), null);
    }

    /**
     * Gets the request builder for EntitlementManagement
     *
     * @return the EntitlementManagementRequestBuilder instance
     */
    @Nonnull
    public com.microsoft.graph.requests.EntitlementManagementRequestBuilder entitlementManagement() {
        return new com.microsoft.graph.requests.EntitlementManagementRequestBuilder(getRequestUrlWithAdditionalSegment("entitlementManagement"), getClient(), null);
    }

    /**
     * Gets the request builder for PrivilegedAccessRoot
     *
     * @return the PrivilegedAccessRootRequestBuilder instance
     */
    @Nonnull
    public com.microsoft.graph.requests.PrivilegedAccessRootRequestBuilder privilegedAccess() {
        return new com.microsoft.graph.requests.PrivilegedAccessRootRequestBuilder(getRequestUrlWithAdditionalSegment("privilegedAccess"), getClient(), null);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy