Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 502d883

Browse files
Commit via running ake Sources/secret-scanning
1 parent 0417d5d commit 502d883

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

‎Sources/secret-scanning/Types.swift

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1050,6 +1050,16 @@ public enum Components {
10501050
///
10511051
/// - Remark: Generated from `#/components/schemas/organization-secret-scanning-alert/push_protection_bypassed_at`.
10521052
public var push_protection_bypassed_at: Foundation.Date?
1053+
/// - Remark: Generated from `#/components/schemas/organization-secret-scanning-alert/push_protection_bypass_request_reviewer`.
1054+
public var push_protection_bypass_request_reviewer: Components.Schemas.nullable_hyphen_simple_hyphen_user?
1055+
/// An optional comment when requesting a push protection bypass.
1056+
///
1057+
/// - Remark: Generated from `#/components/schemas/organization-secret-scanning-alert/push_protection_bypass_request_comment`.
1058+
public var push_protection_bypass_request_comment: Swift.String?
1059+
/// The URL to a push protection bypass request.
1060+
///
1061+
/// - Remark: Generated from `#/components/schemas/organization-secret-scanning-alert/push_protection_bypass_request_html_url`.
1062+
public var push_protection_bypass_request_html_url: Swift.String?
10531063
/// The comment that was optionally added when this alert was closed
10541064
///
10551065
/// - Remark: Generated from `#/components/schemas/organization-secret-scanning-alert/resolution_comment`.
@@ -1094,6 +1104,9 @@ public enum Components {
10941104
/// - push_protection_bypassed: Whether push protection was bypassed for the detected secret.
10951105
/// - push_protection_bypassed_by:
10961106
/// - push_protection_bypassed_at: The time that push protection was bypassed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.
1107+
/// - push_protection_bypass_request_reviewer:
1108+
/// - push_protection_bypass_request_comment: An optional comment when requesting a push protection bypass.
1109+
/// - push_protection_bypass_request_html_url: The URL to a push protection bypass request.
10971110
/// - resolution_comment: The comment that was optionally added when this alert was closed
10981111
/// - validity: The token status as of the latest validity check.
10991112
/// - publicly_leaked: Whether the secret was publicly leaked.
@@ -1116,6 +1129,9 @@ public enum Components {
11161129
push_protection_bypassed: Swift.Bool? = nil,
11171130
push_protection_bypassed_by: Components.Schemas.nullable_hyphen_simple_hyphen_user? = nil,
11181131
push_protection_bypassed_at: Foundation.Date? = nil,
1132+
push_protection_bypass_request_reviewer: Components.Schemas.nullable_hyphen_simple_hyphen_user? = nil,
1133+
push_protection_bypass_request_comment: Swift.String? = nil,
1134+
push_protection_bypass_request_html_url: Swift.String? = nil,
11191135
resolution_comment: Swift.String? = nil,
11201136
validity: Components.Schemas.organization_hyphen_secret_hyphen_scanning_hyphen_alert.validityPayload? = nil,
11211137
publicly_leaked: Swift.Bool? = nil,
@@ -1138,6 +1154,9 @@ public enum Components {
11381154
self.push_protection_bypassed = push_protection_bypassed
11391155
self.push_protection_bypassed_by = push_protection_bypassed_by
11401156
self.push_protection_bypassed_at = push_protection_bypassed_at
1157+
self.push_protection_bypass_request_reviewer = push_protection_bypass_request_reviewer
1158+
self.push_protection_bypass_request_comment = push_protection_bypass_request_comment
1159+
self.push_protection_bypass_request_html_url = push_protection_bypass_request_html_url
11411160
self.resolution_comment = resolution_comment
11421161
self.validity = validity
11431162
self.publicly_leaked = publicly_leaked
@@ -1161,6 +1180,9 @@ public enum Components {
11611180
case push_protection_bypassed
11621181
case push_protection_bypassed_by
11631182
case push_protection_bypassed_at
1183+
case push_protection_bypass_request_reviewer
1184+
case push_protection_bypass_request_comment
1185+
case push_protection_bypass_request_html_url
11641186
case resolution_comment
11651187
case validity
11661188
case publicly_leaked
@@ -1224,6 +1246,16 @@ public enum Components {
12241246
///
12251247
/// - Remark: Generated from `#/components/schemas/secret-scanning-alert/push_protection_bypassed_at`.
12261248
public var push_protection_bypassed_at: Foundation.Date?
1249+
/// - Remark: Generated from `#/components/schemas/secret-scanning-alert/push_protection_bypass_request_reviewer`.
1250+
public var push_protection_bypass_request_reviewer: Components.Schemas.nullable_hyphen_simple_hyphen_user?
1251+
/// An optional comment when requesting a push protection bypass.
1252+
///
1253+
/// - Remark: Generated from `#/components/schemas/secret-scanning-alert/push_protection_bypass_request_comment`.
1254+
public var push_protection_bypass_request_comment: Swift.String?
1255+
/// The URL to a push protection bypass request.
1256+
///
1257+
/// - Remark: Generated from `#/components/schemas/secret-scanning-alert/push_protection_bypass_request_html_url`.
1258+
public var push_protection_bypass_request_html_url: Swift.String?
12271259
/// The token status as of the latest validity check.
12281260
///
12291261
/// - Remark: Generated from `#/components/schemas/secret-scanning-alert/validity`.
@@ -1264,6 +1296,9 @@ public enum Components {
12641296
/// - push_protection_bypassed: Whether push protection was bypassed for the detected secret.
12651297
/// - push_protection_bypassed_by:
12661298
/// - push_protection_bypassed_at: The time that push protection was bypassed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.
1299+
/// - push_protection_bypass_request_reviewer:
1300+
/// - push_protection_bypass_request_comment: An optional comment when requesting a push protection bypass.
1301+
/// - push_protection_bypass_request_html_url: The URL to a push protection bypass request.
12671302
/// - validity: The token status as of the latest validity check.
12681303
/// - publicly_leaked: Whether the detected secret was publicly leaked.
12691304
/// - multi_repo: Whether the detected secret was found in multiple repositories under the same organization or enterprise.
@@ -1285,6 +1320,9 @@ public enum Components {
12851320
push_protection_bypassed: Swift.Bool? = nil,
12861321
push_protection_bypassed_by: Components.Schemas.nullable_hyphen_simple_hyphen_user? = nil,
12871322
push_protection_bypassed_at: Foundation.Date? = nil,
1323+
push_protection_bypass_request_reviewer: Components.Schemas.nullable_hyphen_simple_hyphen_user? = nil,
1324+
push_protection_bypass_request_comment: Swift.String? = nil,
1325+
push_protection_bypass_request_html_url: Swift.String? = nil,
12881326
validity: Components.Schemas.secret_hyphen_scanning_hyphen_alert.validityPayload? = nil,
12891327
publicly_leaked: Swift.Bool? = nil,
12901328
multi_repo: Swift.Bool? = nil
@@ -1306,6 +1344,9 @@ public enum Components {
13061344
self.push_protection_bypassed = push_protection_bypassed
13071345
self.push_protection_bypassed_by = push_protection_bypassed_by
13081346
self.push_protection_bypassed_at = push_protection_bypassed_at
1347+
self.push_protection_bypass_request_reviewer = push_protection_bypass_request_reviewer
1348+
self.push_protection_bypass_request_comment = push_protection_bypass_request_comment
1349+
self.push_protection_bypass_request_html_url = push_protection_bypass_request_html_url
13091350
self.validity = validity
13101351
self.publicly_leaked = publicly_leaked
13111352
self.multi_repo = multi_repo
@@ -1328,6 +1369,9 @@ public enum Components {
13281369
case push_protection_bypassed
13291370
case push_protection_bypassed_by
13301371
case push_protection_bypassed_at
1372+
case push_protection_bypass_request_reviewer
1373+
case push_protection_bypass_request_comment
1374+
case push_protection_bypass_request_html_url
13311375
case validity
13321376
case publicly_leaked
13331377
case multi_repo

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /