Update schemas (#1261)
* Update schemas/ * Bump change log --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Родитель
a5959d7480
Коммит
8ca688b057
|
@ -25,6 +25,7 @@ What's changed since v2.9.0:
|
|||
- Engineering:
|
||||
- Updated PSRule schema files.
|
||||
[#1209](https://github.com/microsoft/PSRule-vscode/pull/1209)
|
||||
[#1261](https://github.com/microsoft/PSRule-vscode/pull/1261)
|
||||
- Bump vscode engine to v1.82.0.
|
||||
[#1238](https://github.com/microsoft/PSRule-vscode/pull/1238)
|
||||
- Bump typescript to v5.2.2.
|
||||
|
|
|
@ -307,14 +307,6 @@
|
|||
"description": "Options that affect execution.",
|
||||
"markdownDescription": "Options that affect execution. [See help](https://aka.ms/ps-rule/options)",
|
||||
"properties": {
|
||||
"aliasReferenceWarning": {
|
||||
"type": "boolean",
|
||||
"title": "Warn on resource aliases | DEPRECATED",
|
||||
"description": "Enable or disable warnings when an alias to a resource is used. The default is true.",
|
||||
"markdownDescription": "Enable or disable warnings when an alias to a resource is used. The default is `true`. [See help](https://microsoft.github.io/PSRule/v2/concepts/PSRule/en-US/about_PSRule_Options/#executionaliasreferencewarning)",
|
||||
"default": true,
|
||||
"deprecated": true
|
||||
},
|
||||
"duplicateResourceId": {
|
||||
"type": "string",
|
||||
"title": "Duplicate resource identifiers",
|
||||
|
@ -351,22 +343,6 @@
|
|||
],
|
||||
"default": "FullLanguage"
|
||||
},
|
||||
"inconclusiveWarning": {
|
||||
"type": "boolean",
|
||||
"title": "Warn on inconclusive rules | DEPRECATED",
|
||||
"description": "Enable or disable warnings for inconclusive rules. The default is true.",
|
||||
"markdownDescription": "Enable or disable warnings for inconclusive rules. The default is `true`. [See help](https://microsoft.github.io/PSRule/v2/concepts/PSRule/en-US/about_PSRule_Options/#executioninconclusivewarning)",
|
||||
"default": true,
|
||||
"deprecated": true
|
||||
},
|
||||
"invariantCultureWarning": {
|
||||
"type": "boolean",
|
||||
"title": "Warn on invariant culture | DEPRECATED",
|
||||
"description": "Enable or disable warning when invariant culture is used. The default is true.",
|
||||
"markdownDescription": "Enable or disable warning when invariant culture is used. The default is `true`. [See help](https://microsoft.github.io/PSRule/v2/concepts/PSRule/en-US/about_PSRule_Options/#executioninvariantculturewarning)",
|
||||
"default": true,
|
||||
"deprecated": true
|
||||
},
|
||||
"initialSessionState": {
|
||||
"type": "string",
|
||||
"title": "Initial Session State",
|
||||
|
@ -378,22 +354,6 @@
|
|||
],
|
||||
"default": "BuiltIn"
|
||||
},
|
||||
"notProcessedWarning": {
|
||||
"type": "boolean",
|
||||
"title": "Warn on unprocessed objects | DEPRECATED",
|
||||
"description": "Enable or disable warnings for objects that are not processed by any rule. The default is true.",
|
||||
"markdownDescription": "Enable or disable warnings for objects that are not processed by any rule. The default is `true`. [See help](https://microsoft.github.io/PSRule/v2/concepts/PSRule/en-US/about_PSRule_Options/#executionnotprocessedwarning)",
|
||||
"default": true,
|
||||
"deprecated": true
|
||||
},
|
||||
"suppressedRuleWarning": {
|
||||
"type": "boolean",
|
||||
"title": "Warn on suppressed rules | DEPRECATED",
|
||||
"description": "This option has been deprecated and will be removed from v3 in favor of ruleSuppressed. Enable or disable warnings for suppressed rules. The default is true.",
|
||||
"markdownDescription": "This option has been deprecated and will be removed from v3 in favor of `ruleSuppressed`.\n\nEnable or disable warnings for suppressed rules. The default is `true`. [See help](https://microsoft.github.io/PSRule/v2/concepts/PSRule/en-US/about_PSRule_Options/#executionsuppressedrulewarning)",
|
||||
"default": true,
|
||||
"deprecated": true
|
||||
},
|
||||
"suppressionGroupExpired": {
|
||||
"type": "string",
|
||||
"title": "Expired suppression groups",
|
||||
|
@ -423,8 +383,8 @@
|
|||
"ruleSuppressed": {
|
||||
"type": "string",
|
||||
"title": "Rule suppressed",
|
||||
"description": "Determines how to handle suppressed rules. Regardless of the value, a suppressed rule is ignored. By default, a warning is generated. When set to Error, an error is thrown. When set to Debug, a message is written to the debug log. When set to Ignore, no output will be displayed. This option replaces suppressedRuleWarning. You do not need to configure both options. If suppressedRuleWarning is configured, it will override ruleSuppressed with Warn or Ignore until removal in PSRule v3.",
|
||||
"markdownDescription": "Determines how to handle suppressed rules.\n\nRegardless of the value, a suppressed rule is ignored. By default, a warning is generated.\n\n- When set to `Error`, an error is thrown.\n- When set to `Debug`, a message is written to the debug log.\n- When set to `Ignore`, no output will be displayed.\n\nThis option replaces `suppressedRuleWarning`. You do not need to configure both options. If `suppressedRuleWarning` is configured, it will override `ruleSuppressed` with `Warn` or `Ignore` until removal in PSRule v3.\n\n[See help](https://microsoft.github.io/PSRule/v2/concepts/PSRule/en-US/about_PSRule_Options/#executionrulesuppressed)",
|
||||
"description": "Determines how to handle suppressed rules. Regardless of the value, a suppressed rule is ignored. By default, a warning is generated. When set to Error, an error is thrown. When set to Debug, a message is written to the debug log. When set to Ignore, no output will be displayed.",
|
||||
"markdownDescription": "Determines how to handle suppressed rules.\n\nRegardless of the value, a suppressed rule is ignored. By default, a warning is generated.\n\n- When set to `Error`, an error is thrown.\n- When set to `Debug`, a message is written to the debug log.\n- When set to `Ignore`, no output will be displayed.\n\n[See help](https://microsoft.github.io/PSRule/v2/concepts/PSRule/en-US/about_PSRule_Options/#executionrulesuppressed)",
|
||||
"enum": [
|
||||
"Ignore",
|
||||
"Warn",
|
||||
|
@ -436,8 +396,8 @@
|
|||
"aliasReference": {
|
||||
"type": "string",
|
||||
"title": "Alias references",
|
||||
"description": "Determines how to handle when an alias to a resource is used. By default, a warning is generated. When set to Error, an error is thrown. When set to Debug, a message is written to the debug log. When set to Ignore, no output will be displayed. This option replaces aliasReferenceWarning. You do not need to configure both options. If aliasReferenceWarning is configured, it will override aliasReference with Warn or Ignore until removal in PSRule v3.",
|
||||
"markdownDescription": "Determines how to handle when an alias to a resource is used. By default, a warning is generated.\n\n- When set to `Error`, an error is thrown.\n- When set to `Debug`, a message is written to the debug log.\n- When set to `Ignore`, no output will be displayed.\n\nThis option replaces `aliasReferenceWarning`. You do not need to configure both options. If `aliasReferenceWarning` is configured, it will override `aliasReference` with `Warn` or `Ignore` until removal in PSRule v3.\n\n[See help](https://microsoft.github.io/PSRule/v2/concepts/PSRule/en-US/about_PSRule_Options/#executionaliasreference)",
|
||||
"description": "Determines how to handle when an alias to a resource is used. By default, a warning is generated. When set to Error, an error is thrown. When set to Debug, a message is written to the debug log. When set to Ignore, no output will be displayed.",
|
||||
"markdownDescription": "Determines how to handle when an alias to a resource is used. By default, a warning is generated.\n\n- When set to `Error`, an error is thrown.\n- When set to `Debug`, a message is written to the debug log.\n- When set to `Ignore`, no output will be displayed.\n\n[See help](https://microsoft.github.io/PSRule/v2/concepts/PSRule/en-US/about_PSRule_Options/#executionaliasreference)",
|
||||
"enum": [
|
||||
"Ignore",
|
||||
"Warn",
|
||||
|
@ -449,8 +409,8 @@
|
|||
"ruleInconclusive": {
|
||||
"type": "string",
|
||||
"title": "Inconclusive rules",
|
||||
"description": "Determines how to handle rules that generate inconclusive results. By default, a warning is generated. When set to Error, an error is thrown. When set to Debug, a message is written to the debug log. When set to Ignore, no output will be displayed. This option replaces inconclusiveWarning. You do not need to configure both options. If inconclusiveWarning is configured, it will override ruleInconclusive with Warn or Ignore until removal in PSRule v3.",
|
||||
"markdownDescription": "Determines how to handle rules that generate inconclusive results. By default, a warning is generated.\n\n- When set to `Error`, an error is thrown.\n- When set to `Debug`, a message is written to the debug log.\n- When set to `Ignore`, no output will be displayed.\n\nThis option replaces `inconclusiveWarning`. You do not need to configure both options. If `inconclusiveWarning` is configured, it will override `ruleInconclusive` with `Warn` or `Ignore` until removal in PSRule v3.\n\n[See help](https://microsoft.github.io/PSRule/v2/concepts/PSRule/en-US/about_PSRule_Options/#executionruleinconclusive)",
|
||||
"description": "Determines how to handle rules that generate inconclusive results. By default, a warning is generated. When set to Error, an error is thrown. When set to Debug, a message is written to the debug log. When set to Ignore, no output will be displayed.",
|
||||
"markdownDescription": "Determines how to handle rules that generate inconclusive results. By default, a warning is generated.\n\n- When set to `Error`, an error is thrown.\n- When set to `Debug`, a message is written to the debug log.\n- When set to `Ignore`, no output will be displayed.\n\n[See help](https://microsoft.github.io/PSRule/v2/concepts/PSRule/en-US/about_PSRule_Options/#executionruleinconclusive)",
|
||||
"enum": [
|
||||
"Ignore",
|
||||
"Warn",
|
||||
|
@ -462,8 +422,8 @@
|
|||
"invariantCulture": {
|
||||
"type": "string",
|
||||
"title": "Invariant culture",
|
||||
"description": "Determines how to report when an invariant culture is used. By default, a warning is generated. When set to Error, an error is thrown. When set to Debug, a message is written to the debug log. When set to Ignore, no output will be displayed. This option replaces invariantCultureWarning. You do not need to configure both options. If invariantCultureWarning is configured, it will override invariantCulture with Warn or Ignore until removal in PSRule v3.",
|
||||
"markdownDescription": "Determines how to report when an invariant culture is used. By default, a warning is generated.\n\n- When set to `Error`, an error is thrown.\n- When set to `Debug`, a message is written to the debug log.\n- When set to `Ignore`, no output will be displayed.\n\nThis option replaces `invariantCultureWarning`. You do not need to configure both options. If `invariantCultureWarning` is configured, it will override `invariantCulture` with `Warn` or `Ignore` until removal in PSRule v3.\n\n[See help](https://microsoft.github.io/PSRule/v2/concepts/PSRule/en-US/about_PSRule_Options/#executioninvariantculture)",
|
||||
"description": "Determines how to report when an invariant culture is used. By default, a warning is generated. When set to Error, an error is thrown. When set to Debug, a message is written to the debug log. When set to Ignore, no output will be displayed.",
|
||||
"markdownDescription": "Determines how to report when an invariant culture is used. By default, a warning is generated.\n\n- When set to `Error`, an error is thrown.\n- When set to `Debug`, a message is written to the debug log.\n- When set to `Ignore`, no output will be displayed.\n\n[See help](https://microsoft.github.io/PSRule/v2/concepts/PSRule/en-US/about_PSRule_Options/#executioninvariantculture)",
|
||||
"enum": [
|
||||
"Ignore",
|
||||
"Warn",
|
||||
|
@ -475,8 +435,8 @@
|
|||
"unprocessedObject": {
|
||||
"type": "string",
|
||||
"title": "Unprocessed object",
|
||||
"description": "Determines how to report objects that are not processed by any rule. By default, a warning is generated. When set to Error, an error is thrown. When set to Debug, a message is written to the debug log. When set to Ignore, no output will be displayed. This option replaces notProcessedWarning. You do not need to configure both options. If notProcessedWarning is configured, it will override unprocessedObject with Warn or Ignore until removal in PSRule v3.",
|
||||
"markdownDescription": "Determines how to report objects that are not processed by any rule. By default, a warning is generated.\n\n- When set to `Error`, an error is thrown.\n- When set to `Debug`, a message is written to the debug log.\n- When set to `Ignore`, no output will be displayed.\n\nThis option replaces `notProcessedWarning`. You do not need to configure both options. If `notProcessedWarning` is configured, it will override `unprocessedObject` with `Warn` or `Ignore` until removal in PSRule v3.\n\n[See help](https://microsoft.github.io/PSRule/v2/concepts/PSRule/en-US/about_PSRule_Options/#executionunprocessedobject)",
|
||||
"description": "Determines how to report objects that are not processed by any rule. By default, a warning is generated. When set to Error, an error is thrown. When set to Debug, a message is written to the debug log. When set to Ignore, no output will be displayed.",
|
||||
"markdownDescription": "Determines how to report objects that are not processed by any rule. By default, a warning is generated.\n\n- When set to `Error`, an error is thrown.\n- When set to `Debug`, a message is written to the debug log.\n- When set to `Ignore`, no output will be displayed.\n\n[See help](https://microsoft.github.io/PSRule/v2/concepts/PSRule/en-US/about_PSRule_Options/#executionunprocessedobject)",
|
||||
"enum": [
|
||||
"Ignore",
|
||||
"Warn",
|
||||
|
|
Загрузка…
Ссылка в новой задаче