com.microsoft.graph.models.DefaultUserRolePermissions Maven / Gradle / Ivy
// Template Source: BaseEntity.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.models;
import com.microsoft.graph.serializer.ISerializer;
import com.microsoft.graph.serializer.IJsonBackedObject;
import com.microsoft.graph.serializer.AdditionalDataManager;
import java.util.EnumSet;
import com.microsoft.graph.http.BaseCollectionPage;
import com.google.gson.JsonObject;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import javax.annotation.Nullable;
import javax.annotation.Nonnull;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
/**
* The class for the Default User Role Permissions.
*/
public class DefaultUserRolePermissions implements IJsonBackedObject {
/** the OData type of the object as returned by the service */
@SerializedName("@odata.type")
@Expose
@Nullable
public String oDataType;
private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this);
@Override
@Nonnull
public final AdditionalDataManager additionalDataManager() {
return additionalDataManager;
}
/**
* The Allowed To Create Apps.
* Indicates whether the default user role can create applications. This setting corresponds to the Users can register applications setting in the User settings menu in the Microsoft Entra admin center.
*/
@SerializedName(value = "allowedToCreateApps", alternate = {"AllowedToCreateApps"})
@Expose
@Nullable
public Boolean allowedToCreateApps;
/**
* The Allowed To Create Security Groups.
* Indicates whether the default user role can create security groups. This setting corresponds to the following menus in the Microsoft Entra admin center: The Users can create security groups in Microsoft Entra admin centers, API or PowerShell setting in the Group settings menu. Users can create security groups setting in the User settings menu.
*/
@SerializedName(value = "allowedToCreateSecurityGroups", alternate = {"AllowedToCreateSecurityGroups"})
@Expose
@Nullable
public Boolean allowedToCreateSecurityGroups;
/**
* The Allowed To Create Tenants.
* Indicates whether the default user role can create tenants. This setting corresponds to the Restrict non-admin users from creating tenants setting in the User settings menu in the Microsoft Entra admin center. When this setting is false, users assigned the Tenant Creator role can still create tenants.
*/
@SerializedName(value = "allowedToCreateTenants", alternate = {"AllowedToCreateTenants"})
@Expose
@Nullable
public Boolean allowedToCreateTenants;
/**
* The Allowed To Read Bitlocker Keys For Owned Device.
* Indicates whether the registered owners of a device can read their own BitLocker recovery keys with default user role.
*/
@SerializedName(value = "allowedToReadBitlockerKeysForOwnedDevice", alternate = {"AllowedToReadBitlockerKeysForOwnedDevice"})
@Expose
@Nullable
public Boolean allowedToReadBitlockerKeysForOwnedDevice;
/**
* The Allowed To Read Other Users.
* Indicates whether the default user role can read other users. DO NOT SET THIS VALUE TO false.
*/
@SerializedName(value = "allowedToReadOtherUsers", alternate = {"AllowedToReadOtherUsers"})
@Expose
@Nullable
public Boolean allowedToReadOtherUsers;
/**
* The Permission Grant Policies Assigned.
* Indicates if user consent to apps is allowed, and if it is, which permission to grant consent and which app consent policy (permissionGrantPolicy) govern the permission for users to grant consent. Value should be in the format managePermissionGrantsForSelf.{id}, where {id} is the id of a built-in or custom app consent policy. An empty list indicates user consent to apps is disabled.
*/
@SerializedName(value = "permissionGrantPoliciesAssigned", alternate = {"PermissionGrantPoliciesAssigned"})
@Expose
@Nullable
public java.util.List permissionGrantPoliciesAssigned;
/**
* Sets the raw JSON object
*
* @param serializer the serializer
* @param json the JSON object to set this object to
*/
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
}
}