![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.managementgroups.fluent.models.HierarchySettingsProperties Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.managementgroups.fluent.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/** The generic properties of hierarchy settings. */
@Fluent
public final class HierarchySettingsProperties {
/*
* The AAD Tenant ID associated with the hierarchy settings. For example, 00000000-0000-0000-0000-000000000000
*/
@JsonProperty(value = "tenantId")
private String tenantId;
/*
* Indicates whether RBAC access is required upon group creation under the root Management Group. If set to true,
* user will require Microsoft.Management/managementGroups/write action on the root Management Group scope in order
* to create new Groups directly under the root. This will prevent new users from creating new Management Groups,
* unless they are given access.
*/
@JsonProperty(value = "requireAuthorizationForGroupCreation")
private Boolean requireAuthorizationForGroupCreation;
/*
* Settings that sets the default Management Group under which new subscriptions get added in this tenant. For
* example, /providers/Microsoft.Management/managementGroups/defaultGroup
*/
@JsonProperty(value = "defaultManagementGroup")
private String defaultManagementGroup;
/** Creates an instance of HierarchySettingsProperties class. */
public HierarchySettingsProperties() {
}
/**
* Get the tenantId property: The AAD Tenant ID associated with the hierarchy settings. For example,
* 00000000-0000-0000-0000-000000000000.
*
* @return the tenantId value.
*/
public String tenantId() {
return this.tenantId;
}
/**
* Set the tenantId property: The AAD Tenant ID associated with the hierarchy settings. For example,
* 00000000-0000-0000-0000-000000000000.
*
* @param tenantId the tenantId value to set.
* @return the HierarchySettingsProperties object itself.
*/
public HierarchySettingsProperties withTenantId(String tenantId) {
this.tenantId = tenantId;
return this;
}
/**
* Get the requireAuthorizationForGroupCreation property: Indicates whether RBAC access is required upon group
* creation under the root Management Group. If set to true, user will require
* Microsoft.Management/managementGroups/write action on the root Management Group scope in order to create new
* Groups directly under the root. This will prevent new users from creating new Management Groups, unless they are
* given access.
*
* @return the requireAuthorizationForGroupCreation value.
*/
public Boolean requireAuthorizationForGroupCreation() {
return this.requireAuthorizationForGroupCreation;
}
/**
* Set the requireAuthorizationForGroupCreation property: Indicates whether RBAC access is required upon group
* creation under the root Management Group. If set to true, user will require
* Microsoft.Management/managementGroups/write action on the root Management Group scope in order to create new
* Groups directly under the root. This will prevent new users from creating new Management Groups, unless they are
* given access.
*
* @param requireAuthorizationForGroupCreation the requireAuthorizationForGroupCreation value to set.
* @return the HierarchySettingsProperties object itself.
*/
public HierarchySettingsProperties withRequireAuthorizationForGroupCreation(
Boolean requireAuthorizationForGroupCreation) {
this.requireAuthorizationForGroupCreation = requireAuthorizationForGroupCreation;
return this;
}
/**
* Get the defaultManagementGroup property: Settings that sets the default Management Group under which new
* subscriptions get added in this tenant. For example,
* /providers/Microsoft.Management/managementGroups/defaultGroup.
*
* @return the defaultManagementGroup value.
*/
public String defaultManagementGroup() {
return this.defaultManagementGroup;
}
/**
* Set the defaultManagementGroup property: Settings that sets the default Management Group under which new
* subscriptions get added in this tenant. For example,
* /providers/Microsoft.Management/managementGroups/defaultGroup.
*
* @param defaultManagementGroup the defaultManagementGroup value to set.
* @return the HierarchySettingsProperties object itself.
*/
public HierarchySettingsProperties withDefaultManagementGroup(String defaultManagementGroup) {
this.defaultManagementGroup = defaultManagementGroup;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy