Skip to content

Commit 84796d9

Browse files
Merge pull request #75 from Wei18/dependabot/submodules/Submodule/github/rest-api-description-066dbf5
Bump Submodule/github/rest-api-description from `38baa7a` to `066dbf5`
2 parents 7d1d62c + 96b8665 commit 84796d9

File tree

12 files changed

+292
-82
lines changed

12 files changed

+292
-82
lines changed

Sources/code-scanning/Types.swift

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1631,10 +1631,22 @@ public enum Components {
16311631
///
16321632
/// - Remark: Generated from `#/components/schemas/code-scanning-alert-rule-summary/description`.
16331633
public var description: Swift.String?
1634+
/// A description of the rule used to detect the alert.
1635+
///
1636+
/// - Remark: Generated from `#/components/schemas/code-scanning-alert-rule-summary/full_description`.
1637+
public var full_description: Swift.String?
16341638
/// A set of tags applicable for the rule.
16351639
///
16361640
/// - Remark: Generated from `#/components/schemas/code-scanning-alert-rule-summary/tags`.
16371641
public var tags: [Swift.String]?
1642+
/// Detailed documentation for the rule as GitHub Flavored Markdown.
1643+
///
1644+
/// - Remark: Generated from `#/components/schemas/code-scanning-alert-rule-summary/help`.
1645+
public var help: Swift.String?
1646+
/// A link to the documentation for the rule used to detect the alert.
1647+
///
1648+
/// - Remark: Generated from `#/components/schemas/code-scanning-alert-rule-summary/help_uri`.
1649+
public var help_uri: Swift.String?
16381650
/// Creates a new `code_hyphen_scanning_hyphen_alert_hyphen_rule_hyphen_summary`.
16391651
///
16401652
/// - Parameters:
@@ -1643,29 +1655,41 @@ public enum Components {
16431655
/// - severity: The severity of the alert.
16441656
/// - security_severity_level: The security severity of the alert.
16451657
/// - description: A short description of the rule used to detect the alert.
1658+
/// - full_description: A description of the rule used to detect the alert.
16461659
/// - tags: A set of tags applicable for the rule.
1660+
/// - help: Detailed documentation for the rule as GitHub Flavored Markdown.
1661+
/// - help_uri: A link to the documentation for the rule used to detect the alert.
16471662
public init(
16481663
id: Swift.String? = nil,
16491664
name: Swift.String? = nil,
16501665
severity: Components.Schemas.code_hyphen_scanning_hyphen_alert_hyphen_rule_hyphen_summary.severityPayload? = nil,
16511666
security_severity_level: Components.Schemas.code_hyphen_scanning_hyphen_alert_hyphen_rule_hyphen_summary.security_severity_levelPayload? = nil,
16521667
description: Swift.String? = nil,
1653-
tags: [Swift.String]? = nil
1668+
full_description: Swift.String? = nil,
1669+
tags: [Swift.String]? = nil,
1670+
help: Swift.String? = nil,
1671+
help_uri: Swift.String? = nil
16541672
) {
16551673
self.id = id
16561674
self.name = name
16571675
self.severity = severity
16581676
self.security_severity_level = security_severity_level
16591677
self.description = description
1678+
self.full_description = full_description
16601679
self.tags = tags
1680+
self.help = help
1681+
self.help_uri = help_uri
16611682
}
16621683
public enum CodingKeys: String, CodingKey {
16631684
case id
16641685
case name
16651686
case severity
16661687
case security_severity_level
16671688
case description
1689+
case full_description
16681690
case tags
1691+
case help
1692+
case help_uri
16691693
}
16701694
}
16711695
/// The version of the tool used to generate the code scanning analysis.
@@ -2107,7 +2131,7 @@ public enum Components {
21072131
///
21082132
/// - Remark: Generated from `#/components/schemas/code-scanning-alert-rule/description`.
21092133
public var description: Swift.String?
2110-
/// description of the rule used to detect the alert.
2134+
/// A description of the rule used to detect the alert.
21112135
///
21122136
/// - Remark: Generated from `#/components/schemas/code-scanning-alert-rule/full_description`.
21132137
public var full_description: Swift.String?
@@ -2131,7 +2155,7 @@ public enum Components {
21312155
/// - severity: The severity of the alert.
21322156
/// - security_severity_level: The security severity of the alert.
21332157
/// - description: A short description of the rule used to detect the alert.
2134-
/// - full_description: description of the rule used to detect the alert.
2158+
/// - full_description: A description of the rule used to detect the alert.
21352159
/// - tags: A set of tags applicable for the rule.
21362160
/// - help: Detailed documentation for the rule as GitHub Flavored Markdown.
21372161
/// - help_uri: A link to the documentation for the rule used to detect the alert.

0 commit comments

Comments
 (0)