@@ -1631,10 +1631,22 @@ public enum Components {
1631
1631
///
1632
1632
/// - Remark: Generated from `#/components/schemas/code-scanning-alert-rule-summary/description`.
1633
1633
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 ?
1634
1638
/// A set of tags applicable for the rule.
1635
1639
///
1636
1640
/// - Remark: Generated from `#/components/schemas/code-scanning-alert-rule-summary/tags`.
1637
1641
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 ?
1638
1650
/// Creates a new `code_hyphen_scanning_hyphen_alert_hyphen_rule_hyphen_summary`.
1639
1651
///
1640
1652
/// - Parameters:
@@ -1643,29 +1655,41 @@ public enum Components {
1643
1655
/// - severity: The severity of the alert.
1644
1656
/// - security_severity_level: The security severity of the alert.
1645
1657
/// - 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.
1646
1659
/// - 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.
1647
1662
public init (
1648
1663
id: Swift . String ? = nil ,
1649
1664
name: Swift . String ? = nil ,
1650
1665
severity: Components . Schemas . code_hyphen_scanning_hyphen_alert_hyphen_rule_hyphen_summary . severityPayload ? = nil ,
1651
1666
security_severity_level: Components . Schemas . code_hyphen_scanning_hyphen_alert_hyphen_rule_hyphen_summary . security_severity_levelPayload ? = nil ,
1652
1667
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
1654
1672
) {
1655
1673
self . id = id
1656
1674
self . name = name
1657
1675
self . severity = severity
1658
1676
self . security_severity_level = security_severity_level
1659
1677
self . description = description
1678
+ self . full_description = full_description
1660
1679
self . tags = tags
1680
+ self . help = help
1681
+ self . help_uri = help_uri
1661
1682
}
1662
1683
public enum CodingKeys : String , CodingKey {
1663
1684
case id
1664
1685
case name
1665
1686
case severity
1666
1687
case security_severity_level
1667
1688
case description
1689
+ case full_description
1668
1690
case tags
1691
+ case help
1692
+ case help_uri
1669
1693
}
1670
1694
}
1671
1695
/// The version of the tool used to generate the code scanning analysis.
@@ -2107,7 +2131,7 @@ public enum Components {
2107
2131
///
2108
2132
/// - Remark: Generated from `#/components/schemas/code-scanning-alert-rule/description`.
2109
2133
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.
2111
2135
///
2112
2136
/// - Remark: Generated from `#/components/schemas/code-scanning-alert-rule/full_description`.
2113
2137
public var full_description : Swift . String ?
@@ -2131,7 +2155,7 @@ public enum Components {
2131
2155
/// - severity: The severity of the alert.
2132
2156
/// - security_severity_level: The security severity of the alert.
2133
2157
/// - 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.
2135
2159
/// - tags: A set of tags applicable for the rule.
2136
2160
/// - help: Detailed documentation for the rule as GitHub Flavored Markdown.
2137
2161
/// - help_uri: A link to the documentation for the rule used to detect the alert.
0 commit comments