Condividi tramite


CreateOrUpdateSettingsRequest Constructors

Definition

Overloads

CreateOrUpdateSettingsRequest()

Initializes a new instance of the CreateOrUpdateSettingsRequest class.

CreateOrUpdateSettingsRequest(Nullable<Boolean>, String)

Initializes a new instance of the CreateOrUpdateSettingsRequest class.

CreateOrUpdateSettingsRequest()

Initializes a new instance of the CreateOrUpdateSettingsRequest class.

public CreateOrUpdateSettingsRequest ();
Public Sub New ()

Applies to

CreateOrUpdateSettingsRequest(Nullable<Boolean>, String)

Initializes a new instance of the CreateOrUpdateSettingsRequest class.

public CreateOrUpdateSettingsRequest (bool? requireAuthorizationForGroupCreation = default, string defaultManagementGroup = default);
new Microsoft.Azure.Management.ManagementGroups.Models.CreateOrUpdateSettingsRequest : Nullable<bool> * string -> Microsoft.Azure.Management.ManagementGroups.Models.CreateOrUpdateSettingsRequest
Public Sub New (Optional requireAuthorizationForGroupCreation As Nullable(Of Boolean) = Nothing, Optional defaultManagementGroup As String = Nothing)

Parameters

requireAuthorizationForGroupCreation
Nullable<Boolean>

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.

defaultManagementGroup
String

Settings that sets the default Management Group under which new subscriptions get added in this tenant. For example, /providers/Microsoft.Management/managementGroups/defaultGroup

Applies to