Skip to content

Commit 88f49e0

Browse files
committed
Merging release branch with new changes in master
2 parents 44eb08f + 82e468f commit 88f49e0

File tree

484 files changed

+493143
-320510
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

484 files changed

+493143
-320510
lines changed

ChangeLog.md

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,82 @@
1+
## 3.4.0 - February 2020
2+
### Highlights since the last major release
3+
* Az.CosmosDB initial version 0.1.0 released
4+
* Az.Network ConnectionMonitor V2 support added
5+
6+
#### Az.Accounts
7+
* Disable context auto saving when AzureRmContext.json not available
8+
* Update the reference to Azure Powershell Common to 1.3.5-preview
9+
10+
#### Az.ApiManagement
11+
* **Get-AzApiManagementApiSchema** Fixed getting Open-Api Schema associated with an API
12+
https://github.com/Azure/azure-powershell/issues/10626
13+
* **New-AzApiManagementProduct*** and **Set-AzApiManagementProduct**
14+
- Fix documentation for https://github.com/Azure/azure-powershell/issues/10472
15+
* **Set-AzApiManagementApi**
16+
Added example to show how to update the ServiceUrl using the cmdlet
17+
18+
#### Az.Compute
19+
* Limit the number of VM status to 100 to avoid throttling when Get-AzVM -Status is performed without VM name.
20+
* Add Update-AzDiskEncryptionSet cmdlet
21+
* Add EncryptionType and DiskEncryptionSetId parameters to the following cmdlets:
22+
- New-AzDiskUpdateConfig, New-AzSnapshotUpdateConfig
23+
* Add ColocationStatus parameter to Get-AzProximityPlacementGroup cmdlet.
24+
25+
#### Az.DataFactory
26+
* Update ADF .Net SDK version to 4.7.0
27+
28+
#### Az.DeploymentManager
29+
* Adds LIST operations for resources
30+
* Adds capability for performing operations on Health Check steps
31+
32+
#### Az.HDInsight
33+
* Fix document error of New-AzHDInsightCluster.
34+
35+
#### Az.KeyVault
36+
* Add Name alias to VaultName attribute to make Remove-AzureKeyVault consistent with New-AzureKeyVault.
37+
38+
#### Az.Network
39+
* New example added to Set-AzNetworkWatcherConfigFlowLog.md to demonstrate Traffic Analytics disable scenario.
40+
* Add support for assigning management IP configuration to Azure Firewall - a dedicated subnet and Public IP that the firewall will use for its management traffic
41+
- Updated New-AzFirewall cmdlet:
42+
- Added parameter -ManagementPublicIpAddress (not mandatory) which accepts a Public IP Address object
43+
- Added method SetManagementIpConfiguration on firewall object - requires a subnet and a Public IP address as input - subnet name must be 'AzureFirewallManagementSubnet'
44+
* Corrected Get-AzNetworkSecurityGroup examples to show examples for NSG's instead of network interfaces.
45+
* Fixed typo in New-AzureRmVpnSite command that was preventing resource id completer from completing a parameter.
46+
* Added support for Url Confiugration in Rewrite Rules Action Set in the Application Gateway
47+
- New cmdlets added:
48+
- New-AzApplicationGatewayRewriteRuleUrlConfiguration
49+
- Cmdlets updated with optional parameter - UrlConfiguration
50+
- New-AzApplicationGatewayRewriteRuleActionSet
51+
* Add suppport for NetworkWatcher ConnectionMonitor version 2 resources
52+
53+
#### Az.PolicyInsights
54+
* Support evaluating compliance prior to determining what resource to remediate
55+
- Add '-ResourceDiscoverMode' parameter to Start-AzPolicyRemediation
56+
* Add Get-AzPolicyMetadata cmdlet for getting policy metadata resources
57+
* Updated Get-AzPolicyState and Get-AzPolicyStateSummary for API version 2019-10-01
58+
59+
#### Az.RecoveryServices
60+
* Azure Site Recovery support for removing a replicated disk.
61+
* Azure Backup added support for adding tags while creating a Recovery Services Vault.
62+
63+
#### Az.Resources
64+
* Make -Scope optional in *-AzPolicyAssignment cmdlets with default to context subscription
65+
* Add examples of creating ADServicePrincipal with password and key credential
66+
67+
#### Az.Sql
68+
Fix New-AzSqlDatabaseSecondary cmdlet to check for PartnerDatabaseName existence instead of DatabaseName existence.
69+
70+
#### Az.Storage
71+
* Support set Table/Queue Encryption Keytype in Create Storage Account
72+
- New-AzRmStorageAccount
73+
* Show RequestId when StorageException don't have ExtendedErrorInformation
74+
* Fix the Example 6 of cmdlet Start-AzStorageBlobCopy
75+
76+
#### Az.Websites
77+
* Set-AzWebapp and Set-AzWebappSlot supports AlwaysOn, MinTls and FtpsState properties
78+
* Fixing issue where setting HttpsOnly along with changing AppservicePlan at the same time using the single Set-AzWebApp Command, was resetting HttpsOnly to default value
79+
180
## 3.3.0 - January 2020
281
#### Az.Accounts
382
* Updated Add-AzEnvironment and Set-AzEnvironment to accept parameters AzureAttestationServiceEndpointResourceId and AzureAttestationServiceEndpointSuffix

src/Accounts/Accounts/Az.Accounts.psd1

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 1/2/2020
6+
# Generated on: 1/21/2020
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.7.0'
15+
ModuleVersion = '1.7.1'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -142,7 +142,8 @@ PrivateData = @{
142142
# IconUri = ''
143143

144144
# ReleaseNotes of this module
145-
ReleaseNotes = '* Updated Add-AzEnvironment and Set-AzEnvironment to accept parameters AzureAttestationServiceEndpointResourceId and AzureAttestationServiceEndpointSuffix'
145+
ReleaseNotes = '* Disable context auto saving when AzureRmContext.json not available
146+
* Update the reference to Azure Powershell Common to 1.3.5-preview'
146147

147148
# Prerelease string of this module
148149
# Prerelease = ''

src/Accounts/Accounts/AzureRmAlias/Mappings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1340,6 +1340,7 @@
13401340
"New-AzApplicationGatewayRewriteRule": "New-AzureRmApplicationGatewayRewriteRule",
13411341
"New-AzApplicationGatewayRewriteRuleActionSet": "New-AzureRmApplicationGatewayRewriteRuleActionSet",
13421342
"New-AzApplicationGatewayRewriteRuleHeaderConfiguration": "New-AzureRmApplicationGatewayRewriteRuleHeaderConfiguration",
1343+
"New-AzApplicationGatewayRewriteRuleUrlConfiguration": "New-AzureRmApplicationGatewayRewriteRuleUrlConfiguration",
13431344
"New-AzApplicationGatewayRewriteRuleCondition": "New-AzureRmApplicationGatewayRewriteRuleCondition",
13441345
"Add-AzApplicationGatewayRedirectConfiguration": "Add-AzureRmApplicationGatewayRedirectConfiguration",
13451346
"Get-AzApplicationGatewayRedirectConfiguration": "Get-AzureRmApplicationGatewayRedirectConfiguration",

src/Accounts/Accounts/ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
22+
## Version 1.7.1
2123
* Disable context auto saving when AzureRmContext.json not available
2224
* Update the reference to Azure Powershell Common to 1.3.5-preview
2325

src/Accounts/Accounts/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
// You can specify all the values or you can default the Build and Revision Numbers
4444
// by using the '*' as shown below:
4545

46-
[assembly: AssemblyVersion("1.7.0")]
47-
[assembly: AssemblyFileVersion("1.7.0")]
46+
[assembly: AssemblyVersion("1.7.1")]
47+
[assembly: AssemblyFileVersion("1.7.1")]
4848
#if !SIGN
4949
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Accounts.Test")]
5050
#endif

src/Advisor/Advisor/Az.Advisor.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2'
5151
# ProcessorArchitecture = ''
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.0'; })
54+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.1'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = 'Microsoft.Azure.Management.Advisor.dll'

src/Aks/Aks/Az.Aks.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

5555
# Modules that must be imported into the global environment prior to importing this module
56-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.0'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.1'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = 'YamlDotNet.dll', 'AutoMapper.dll'

src/AlertsManagement/AlertsManagement/Az.AlertsManagement.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

5555
# Modules that must be imported into the global environment prior to importing this module
56-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.0'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.1'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = 'Microsoft.Azure.Management.AlertsManagement.dll'

src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

5555
# Modules that must be imported into the global environment prior to importing this module
56-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.0'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.1'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = 'Microsoft.Azure.Management.Analysis.dll'

src/ApiManagement/ApiManagement/Az.ApiManagement.psd1

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 12/11/2019
6+
# Generated on: 1/21/2020
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.3.3'
15+
ModuleVersion = '1.3.4'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

5555
# Modules that must be imported into the global environment prior to importing this module
56-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.0'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.1'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = 'AutoMapper.dll', 'Microsoft.Azure.Management.ApiManagement.dll',
@@ -188,7 +188,12 @@ PrivateData = @{
188188
# IconUri = ''
189189

190190
# ReleaseNotes of this module
191-
ReleaseNotes = '* Update references in .psd1 to use relative path'
191+
ReleaseNotes = '* **Get-AzApiManagementApiSchema** Fixed getting Open-Api Schema associated with an API
192+
https://github.com/Azure/azure-powershell/issues/10626
193+
* **New-AzApiManagementProduct*** and **Set-AzApiManagementProduct**
194+
- Fix documentation for https://github.com/Azure/azure-powershell/issues/10472
195+
* **Set-AzApiManagementApi**
196+
Added example to show how to update the ServiceUrl using the cmdlet'
192197

193198
# Prerelease string of this module
194199
# Prerelease = ''

src/ApiManagement/ApiManagement/ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
22+
## Version 1.3.4
2123
* **Get-AzApiManagementApiSchema** Fixed getting Open-Api Schema associated with an API
2224
https://github.com/Azure/azure-powershell/issues/10626
2325

src/ApiManagement/ApiManagement/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@
4141
// You can specify all the values or you can default the Build and Revision Numbers
4242
// by using the '*' as shown below:
4343

44-
[assembly: AssemblyVersion("1.3.3")]
45-
[assembly: AssemblyFileVersion("1.3.3")]
44+
[assembly: AssemblyVersion("1.3.4")]
45+
[assembly: AssemblyFileVersion("1.3.4")]

src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

5555
# Modules that must be imported into the global environment prior to importing this module
56-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.0'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.1'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = 'Microsoft.Azure.Management.ApplicationInsights.dll'

src/Attestation/Attestation/Az.Attestation.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

5555
# Modules that must be imported into the global environment prior to importing this module
56-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.0'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.1'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = 'Microsoft.Azure.Management.Attestation.dll'

src/Automation/Automation/Az.Automation.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

5555
# Modules that must be imported into the global environment prior to importing this module
56-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.0'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.1'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = 'Microsoft.Azure.Management.Automation.dll'

src/Batch/Batch/Az.Batch.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

5555
# Modules that must be imported into the global environment prior to importing this module
56-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.0'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.1'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = 'Microsoft.Azure.Batch.dll', 'Microsoft.Azure.Management.Batch.dll',

src/Billing/Billing/Az.Billing.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

5555
# Modules that must be imported into the global environment prior to importing this module
56-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.0'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.1'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = 'Microsoft.Azure.Management.Billing.dll',

src/Blueprint/Blueprint/Az.Blueprint.psd1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 12/16/2019
6+
# Generated on: 1/29/2020
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.2.9'
15+
ModuleVersion = '0.2.10'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

5555
# Modules that must be imported into the global environment prior to importing this module
56-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.0'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.1'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = 'Microsoft.Azure.Management.Blueprint.dll'
@@ -114,7 +114,7 @@ PrivateData = @{
114114
# IconUri = ''
115115

116116
# ReleaseNotes of this module
117-
ReleaseNotes = '* Update references in .psd1 to use relative path'
117+
ReleaseNotes = '* Added support to include subfolders when deploying blueprints with artifacts'
118118

119119
# Prerelease string of this module
120120
# Prerelease = ''

src/Blueprint/Blueprint/ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
-->
2020
## Upcoming Release
2121

22+
## Version 0.2.10
23+
* Added support to include subfolders when deploying blueprints with artifacts
24+
2225
## Version 0.2.9
2326
* Update references in .psd1 to use relative path
2427

src/Blueprint/Blueprint/Cmdlets/BlueprintDefinition/BlueprintDefinitionCmdletBase.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ protected string CreateFolderIfNotExist(string path, string folderName)
167167
return folderPath;
168168
}
169169

170-
protected void ImportArtifacts(string blueprintName, string scope, string inputPath)
170+
protected void ImportArtifacts(string blueprintName, string scope, string inputPath, bool includeSubfolders = false)
171171
{
172172
var artifactsPath = GetValidatedFolderPathForArtifacts(ResolveUserPath(inputPath));
173173

@@ -176,7 +176,7 @@ protected void ImportArtifacts(string blueprintName, string scope, string inputP
176176
return; // if blueprint doesn't contain artifacts don't proceed.
177177
}
178178

179-
var artifactFiles = AzureSession.Instance.DataStore.GetFiles(artifactsPath, "*.json", SearchOption.TopDirectoryOnly);
179+
var artifactFiles = AzureSession.Instance.DataStore.GetFiles(artifactsPath, "*.json", includeSubfolders ? SearchOption.AllDirectories : SearchOption.TopDirectoryOnly);
180180

181181
foreach (var artifactFile in artifactFiles)
182182
{

src/Blueprint/Blueprint/Cmdlets/BlueprintDefinition/ImportAzureRMBlueprint.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ public class ImportAzureRmBlueprint : BlueprintDefinitionCmdletBase
3939
[ValidateNotNullOrEmpty]
4040
public string InputPath { get; set; }
4141

42+
[Parameter(ParameterSetName = ParameterSetNames.ImportBlueprintParameterSet, Mandatory = false, HelpMessage = ParameterHelpMessages.ImportIncludeSubFolders)]
43+
public SwitchParameter IncludeSubFolders { get; set; }
44+
4245
[Parameter(ParameterSetName = ParameterSetNames.ImportBlueprintParameterSet, Mandatory = false, HelpMessage = ParameterHelpMessages.ForceHelpMessage)]
4346
public SwitchParameter Force { get; set; }
4447

@@ -56,7 +59,7 @@ public override void ExecuteCmdlet()
5659
: Utils.GetScopeForSubscription(SubscriptionId ?? DefaultContext.Subscription.Id);
5760

5861
ImportBlueprint(Name, scope, InputPath, Force);
59-
ImportArtifacts(Name, scope, InputPath);
62+
ImportArtifacts(Name, scope, InputPath, IncludeSubFolders);
6063

6164
if (PassThru.IsPresent)
6265
{

src/Blueprint/Blueprint/Common/BlueprintConstants.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ public static class ParameterHelpMessages
109109
public const string ExportOutputFile = "Path to a file on disk where to export the Blueprint definition in JSON format.";
110110
public const string ForceHelpMessage = "When set to true, execution will not ask for a confirmation.";
111111
public const string ImportInputPath = "Path to a Blueprint JSON file on disk.";
112+
public const string ImportIncludeSubFolders = "If sub folders should be included.";
112113
public const string ChangeNotes = "Notes to describe the contents of this blueprint version.";
113114
}
114115
}

src/Blueprint/Blueprint/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
// You can specify all the values or you can default the Build and Revision Numbers
4444
// by using the '*' as shown below:
4545

46-
[assembly: AssemblyVersion("0.2.9")]
47-
[assembly: AssemblyFileVersion("0.2.9")]
46+
[assembly: AssemblyVersion("0.2.10")]
47+
[assembly: AssemblyFileVersion("0.2.10")]
4848
#if SIGN
4949
[assembly: InternalsVisibleTo("Microsoft.Azure.Commands.ResourceManager.Blueprint.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
5050
#else

0 commit comments

Comments
 (0)