Skip to content

Bump Submodule/github/rest-api-description from 38baa7a to 066dbf5 #75

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
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 27 additions & 3 deletions Sources/code-scanning/Types.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1631,10 +1631,22 @@ public enum Components {
///
/// - Remark: Generated from `#/components/schemas/code-scanning-alert-rule-summary/description`.
public var description: Swift.String?
/// A description of the rule used to detect the alert.
///
/// - Remark: Generated from `#/components/schemas/code-scanning-alert-rule-summary/full_description`.
public var full_description: Swift.String?
/// A set of tags applicable for the rule.
///
/// - Remark: Generated from `#/components/schemas/code-scanning-alert-rule-summary/tags`.
public var tags: [Swift.String]?
/// Detailed documentation for the rule as GitHub Flavored Markdown.
///
/// - Remark: Generated from `#/components/schemas/code-scanning-alert-rule-summary/help`.
public var help: Swift.String?
/// A link to the documentation for the rule used to detect the alert.
///
/// - Remark: Generated from `#/components/schemas/code-scanning-alert-rule-summary/help_uri`.
public var help_uri: Swift.String?
/// Creates a new `code_hyphen_scanning_hyphen_alert_hyphen_rule_hyphen_summary`.
///
/// - Parameters:
Expand All @@ -1643,29 +1655,41 @@ public enum Components {
/// - severity: The severity of the alert.
/// - security_severity_level: The security severity of the alert.
/// - description: A short description of the rule used to detect the alert.
/// - full_description: A description of the rule used to detect the alert.
/// - tags: A set of tags applicable for the rule.
/// - help: Detailed documentation for the rule as GitHub Flavored Markdown.
/// - help_uri: A link to the documentation for the rule used to detect the alert.
public init(
id: Swift.String? = nil,
name: Swift.String? = nil,
severity: Components.Schemas.code_hyphen_scanning_hyphen_alert_hyphen_rule_hyphen_summary.severityPayload? = nil,
security_severity_level: Components.Schemas.code_hyphen_scanning_hyphen_alert_hyphen_rule_hyphen_summary.security_severity_levelPayload? = nil,
description: Swift.String? = nil,
tags: [Swift.String]? = nil
full_description: Swift.String? = nil,
tags: [Swift.String]? = nil,
help: Swift.String? = nil,
help_uri: Swift.String? = nil
) {
self.id = id
self.name = name
self.severity = severity
self.security_severity_level = security_severity_level
self.description = description
self.full_description = full_description
self.tags = tags
self.help = help
self.help_uri = help_uri
}
public enum CodingKeys: String, CodingKey {
case id
case name
case severity
case security_severity_level
case description
case full_description
case tags
case help
case help_uri
}
}
/// The version of the tool used to generate the code scanning analysis.
Expand Down Expand Up @@ -2107,7 +2131,7 @@ public enum Components {
///
/// - Remark: Generated from `#/components/schemas/code-scanning-alert-rule/description`.
public var description: Swift.String?
/// description of the rule used to detect the alert.
/// A description of the rule used to detect the alert.
///
/// - Remark: Generated from `#/components/schemas/code-scanning-alert-rule/full_description`.
public var full_description: Swift.String?
Expand All @@ -2131,7 +2155,7 @@ public enum Components {
/// - severity: The severity of the alert.
/// - security_severity_level: The security severity of the alert.
/// - description: A short description of the rule used to detect the alert.
/// - full_description: description of the rule used to detect the alert.
/// - full_description: A description of the rule used to detect the alert.
/// - tags: A set of tags applicable for the rule.
/// - help: Detailed documentation for the rule as GitHub Flavored Markdown.
/// - help_uri: A link to the documentation for the rule used to detect the alert.
Expand Down
Loading