-
Notifications
You must be signed in to change notification settings - Fork 4.1k
FirmwareAnalysis OOB Release #28552
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
FirmwareAnalysis OOB Release #28552
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,6 +38,8 @@ | |
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -3,7 +3,7 @@ | |||||
# | ||||||
# Generated by: Microsoft Corporation | ||||||
# | ||||||
# Generated on: 09/11/2025 | ||||||
# Generated on: 9/12/2025 | ||||||
# | ||||||
|
||||||
@{ | ||||||
|
@@ -12,7 +12,7 @@ | |||||
# RootModule = '' | ||||||
|
||||||
# Version number of this module. | ||||||
ModuleVersion = '0.1.4' | ||||||
ModuleVersion = '1.0.0' | ||||||
|
||||||
# Supported PSEditions | ||||||
CompatiblePSEditions = 'Core', 'Desktop' | ||||||
|
@@ -57,10 +57,10 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.3.0'; }) | |||||
RequiredAssemblies = 'FirmwareAnalysis.Autorest/bin/Az.FirmwareAnalysis.private.dll' | ||||||
|
||||||
# Script files (.ps1) that are run in the caller's environment prior to importing this module. | ||||||
ScriptsToProcess = @() | ||||||
# ScriptsToProcess = @() | ||||||
|
||||||
# Type files (.ps1xml) to be loaded when importing this module | ||||||
TypesToProcess = @() | ||||||
# TypesToProcess = @() | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This line should remain uncommented as
Suggested change
Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||||||
|
||||||
# Format files (.ps1xml) to be loaded when importing this module | ||||||
FormatsToProcess = 'FirmwareAnalysis.Autorest/Az.FirmwareAnalysis.format.ps1xml' | ||||||
|
@@ -109,7 +109,7 @@ PrivateData = @{ | |||||
PSData = @{ | ||||||
|
||||||
# Tags applied to this module. These help with module discovery in online galleries. | ||||||
Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', 'FirmwareAnalysis' | ||||||
Tags = 'Azure','ResourceManager','ARM','PSModule','FirmwareAnalysis' | ||||||
|
||||||
# A URL to the license for this module. | ||||||
LicenseUri = 'https://aka.ms/azps-license' | ||||||
|
@@ -121,7 +121,9 @@ PrivateData = @{ | |||||
# IconUri = '' | ||||||
|
||||||
# ReleaseNotes of this module | ||||||
ReleaseNotes = '* Upgraded nuget package to signed package.' | ||||||
ReleaseNotes = '* General availability for module Az.FirmwareAnalysis | ||||||
* Upgraded API support to include 2025-08-02 | ||||||
* Added usage metric support via the Get-AzFirmwareAnalysisUsageMetric cmdlet' | ||||||
|
||||||
# Prerelease string of this module | ||||||
# Prerelease = '' | ||||||
|
@@ -134,7 +136,7 @@ PrivateData = @{ | |||||
|
||||||
} # End of PSData hashtable | ||||||
|
||||||
} # End of PrivateData hashtable | ||||||
} # End of PrivateData hashtable | ||||||
|
||||||
# HelpInfo URI of this module | ||||||
# HelpInfoURI = '' | ||||||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line should remain uncommented as
ScriptsToProcess = @()
to maintain consistency with the original format. Commenting out required module manifest properties can cause confusion about their intended state.Copilot uses AI. Check for mistakes.