Skip to content

Commit 5384dc8

Browse files
authored
[storage][BULK] DocuTune - Updates to Azure AD rebranding guidance and DocuTune configuration (#23044)
1 parent 05c9e60 commit 5384dc8

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

src/Storage/Storage.Management/StorageAccount/NewAzureStorageAccount.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ public bool EnableHierarchicalNamespace
272272

273273
[Parameter(
274274
Mandatory = false,
275-
HelpMessage = "Enable Azure Files Azure Active Directory Domain Service Authentication for the storage account.",
275+
HelpMessage = "Enable Azure Files Microsoft Entra Domain Service Authentication for the storage account.",
276276
ParameterSetName = AzureActiveDirectoryDomainServicesForFileParameterSet)]
277277
[ValidateNotNullOrEmpty]
278278
public bool EnableAzureActiveDirectoryDomainServicesForFile
@@ -519,7 +519,7 @@ public string MinimumTlsVersion
519519
[Parameter(
520520
Mandatory = false,
521521
HelpMessage = "Indicates whether the storage account permits requests to be authorized with the account access key via Shared Key. " +
522-
"If false, then all requests, including shared access signatures, must be authorized with Azure Active Directory (Azure AD). " +
522+
"If false, then all requests, including shared access signatures, must be authorized with Microsoft Entra ID. " +
523523
"The default value is null, which is equivalent to true.")]
524524
[ValidateNotNullOrEmpty]
525525
public bool AllowSharedKeyAccess
@@ -554,7 +554,7 @@ public bool EnableNfsV3
554554

555555
[Parameter(
556556
Mandatory = false,
557-
HelpMessage = "Gets or sets allow or disallow cross AAD tenant object replication. The default interpretation is true for this property.")]
557+
HelpMessage = "Gets or sets allow or disallow cross Microsoft Entra tenant object replication. The default interpretation is true for this property.")]
558558
[ValidateNotNullOrEmpty]
559559
public bool AllowCrossTenantReplication
560560
{
@@ -616,7 +616,7 @@ public int ImmutabilityPeriod
616616
[ValidateNotNullOrEmpty]
617617
public string ImmutabilityPolicyState { get; set; }
618618

619-
[Parameter(Mandatory = false, HelpMessage = "Set restrict copy to and from Storage Accounts within an AAD tenant or with Private Links to the same VNet. Possible values include: 'PrivateLink', 'AAD'")]
619+
[Parameter(Mandatory = false, HelpMessage = "Set restrict copy to and from Storage Accounts within a Microsoft Entra tenant or with Private Links to the same VNet. Possible values include: 'PrivateLink', 'AAD'")]
620620
[PSArgumentCompleter("PrivateLink", "AAD")]
621621
[ValidateNotNullOrEmpty]
622622
public string AllowedCopyScope { get; set; }

src/Storage/Storage.Management/StorageAccount/SetAzureStorageAccount.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ public string MinimumTlsVersion
433433
[Parameter(
434434
Mandatory = false,
435435
HelpMessage = "Indicates whether the storage account permits requests to be authorized with the account access key via Shared Key. " +
436-
"If false, then all requests, including shared access signatures, must be authorized with Azure Active Directory (Azure AD). " +
436+
"If false, then all requests, including shared access signatures, must be authorized with Microsoft Entra ID. " +
437437
"The default value is null, which is equivalent to true.")]
438438
[ValidateNotNullOrEmpty]
439439
public bool AllowSharedKeyAccess
@@ -479,7 +479,7 @@ public int KeyExpirationPeriodInDay
479479

480480
[Parameter(
481481
Mandatory = false,
482-
HelpMessage = "Gets or sets allow or disallow cross AAD tenant object replication. The default interpretation is true for this property.")]
482+
HelpMessage = "Gets or sets allow or disallow cross Microsoft Entra tenant object replication. The default interpretation is true for this property.")]
483483
[ValidateNotNullOrEmpty]
484484
public bool AllowCrossTenantReplication
485485
{
@@ -570,7 +570,7 @@ public bool EnableLocalUser
570570
}
571571
private bool? enableLocalUser = null;
572572

573-
[Parameter(Mandatory = false, HelpMessage = "Set restrict copy to and from Storage Accounts within an AAD tenant or with Private Links to the same VNet. Possible values include: 'PrivateLink', 'AAD'")]
573+
[Parameter(Mandatory = false, HelpMessage = "Set restrict copy to and from Storage Accounts within a Microsoft Entra tenant or with Private Links to the same VNet. Possible values include: 'PrivateLink', 'AAD'")]
574574
[PSArgumentCompleter("PrivateLink", "AAD")]
575575
[ValidateNotNullOrEmpty]
576576
public string AllowedCopyScope { get; set; }

src/Storage/Storage/Common/Cmdlet/NewAzureStorageContext.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -284,9 +284,9 @@ public string Environment
284284
[Parameter(HelpMessage = TableServiceEndPointHelpMessage, ParameterSetName = OAuthServiceEndpointParameterSet)]
285285
public string TableEndpoint { get; set; }
286286

287-
[Parameter(Mandatory = false, ParameterSetName = OAuthParameterSet, HelpMessage = "Required parameter to use with OAuth (Azure AD) Authentication for Files. This will bypass any file/directory level permission checks and allow access, based on the allowed data actions, even if there are ACLs in place for those files/directories.")]
288-
[Parameter(Mandatory = false, ParameterSetName = OAuthEnvironmentParameterSet, HelpMessage = "Required parameter to use with OAuth (Azure AD) Authentication for Files. This will bypass any file/directory level permission checks and allow access, based on the allowed data actions, even if there are ACLs in place for those files/directories.")]
289-
[Parameter(Mandatory = false, ParameterSetName = OAuthServiceEndpointParameterSet, HelpMessage = "Required parameter to use with OAuth (Azure AD) Authentication for Files. This will bypass any file/directory level permission checks and allow access, based on the allowed data actions, even if there are ACLs in place for those files/directories.")]
287+
[Parameter(Mandatory = false, ParameterSetName = OAuthParameterSet, HelpMessage = "Required parameter to use with OAuth (Microsoft Entra ID) Authentication for Files. This will bypass any file/directory level permission checks and allow access, based on the allowed data actions, even if there are ACLs in place for those files/directories.")]
288+
[Parameter(Mandatory = false, ParameterSetName = OAuthEnvironmentParameterSet, HelpMessage = "Required parameter to use with OAuth (Microsoft Entra ID) Authentication for Files. This will bypass any file/directory level permission checks and allow access, based on the allowed data actions, even if there are ACLs in place for those files/directories.")]
289+
[Parameter(Mandatory = false, ParameterSetName = OAuthServiceEndpointParameterSet, HelpMessage = "Required parameter to use with OAuth (Microsoft Entra ID) Authentication for Files. This will bypass any file/directory level permission checks and allow access, based on the allowed data actions, even if there are ACLs in place for those files/directories.")]
290290
public SwitchParameter EnableFileBackupRequestIntent { get; set; }
291291

292292
/// <summary>

src/Storage/Storage/DatalakeGen2/Cmdlet/GetAzDataLakeGen2ChildItem.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ public int? MaxCount
8080
public SwitchParameter AsJob { get; set; }
8181

8282
[Alias("UserPrincipalName")]
83-
[Parameter(Mandatory = false, HelpMessage = "If speicify this parameter, the user identity values returned in the owner and group fields of each list entry will be transformed from Azure Active Directory Object IDs to User Principal Names. "
84-
+ "If not speicify this parameter, the values will be returned as Azure Active Directory Object IDs. Note that group and application Object IDs are not translated because they do not have unique friendly names.")]
83+
[Parameter(Mandatory = false, HelpMessage = "If speicify this parameter, the user identity values returned in the owner and group fields of each list entry will be transformed from Microsoft Entra Object IDs to User Principal Names. "
84+
+ "If not speicify this parameter, the values will be returned as Microsoft Entra Object IDs. Note that group and application Object IDs are not translated because they do not have unique friendly names.")]
8585
public SwitchParameter OutputUserPrincipalName { get; set; }
8686

8787
// Overwrite the useless parameter

0 commit comments

Comments
 (0)