Skip to content

Commit 4ceb4a0

Browse files
committed
[Make] Sync *.swift
1 parent f04ccf2 commit 4ceb4a0

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

Sources/secret-scanning/Types.swift

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1721,11 +1721,11 @@ public enum Components {
17211721
}
17221722
/// Types generated from the `#/components/parameters` section of the OpenAPI document.
17231723
public enum Parameters {
1724-
/// A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results before this cursor.
1724+
/// A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results before this cursor. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
17251725
///
17261726
/// - Remark: Generated from `#/components/parameters/pagination-before`.
17271727
public typealias pagination_hyphen_before = Swift.String
1728-
/// A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results after this cursor.
1728+
/// A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results after this cursor. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
17291729
///
17301730
/// - Remark: Generated from `#/components/parameters/pagination-after`.
17311731
public typealias pagination_hyphen_after = Swift.String
@@ -1736,11 +1736,11 @@ public enum Components {
17361736
case asc = "asc"
17371737
case desc = "desc"
17381738
}
1739-
/// The number of results per page (max 100).
1739+
/// The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
17401740
///
17411741
/// - Remark: Generated from `#/components/parameters/per-page`.
17421742
public typealias per_hyphen_page = Swift.Int
1743-
/// Page number of the results to fetch.
1743+
/// The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
17441744
///
17451745
/// - Remark: Generated from `#/components/parameters/page`.
17461746
public typealias page = Swift.Int
@@ -1968,15 +1968,15 @@ public enum Operations {
19681968
///
19691969
/// - Remark: Generated from `#/paths/enterprises/{enterprise}/secret-scanning/alerts/GET/query/direction`.
19701970
public var direction: Components.Parameters.direction?
1971-
/// The number of results per page (max 100).
1971+
/// The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
19721972
///
19731973
/// - Remark: Generated from `#/paths/enterprises/{enterprise}/secret-scanning/alerts/GET/query/per_page`.
19741974
public var per_page: Components.Parameters.per_hyphen_page?
1975-
/// A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results before this cursor.
1975+
/// A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results before this cursor. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
19761976
///
19771977
/// - Remark: Generated from `#/paths/enterprises/{enterprise}/secret-scanning/alerts/GET/query/before`.
19781978
public var before: Components.Parameters.pagination_hyphen_before?
1979-
/// A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results after this cursor.
1979+
/// A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results after this cursor. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
19801980
///
19811981
/// - Remark: Generated from `#/paths/enterprises/{enterprise}/secret-scanning/alerts/GET/query/after`.
19821982
public var after: Components.Parameters.pagination_hyphen_after?
@@ -1992,9 +1992,9 @@ public enum Operations {
19921992
/// - resolution: A comma-separated list of resolutions. Only secret scanning alerts with one of these resolutions are listed. Valid resolutions are `false_positive`, `wont_fix`, `revoked`, `pattern_edited`, `pattern_deleted` or `used_in_tests`.
19931993
/// - sort: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved.
19941994
/// - direction: The direction to sort the results by.
1995-
/// - per_page: The number of results per page (max 100).
1996-
/// - before: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results before this cursor.
1997-
/// - after: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results after this cursor.
1995+
/// - per_page: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
1996+
/// - before: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results before this cursor. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
1997+
/// - after: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results after this cursor. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
19981998
/// - validity: A comma-separated list of validities that, when present, will return alerts that match the validities in this list. Valid options are `active`, `inactive`, and `unknown`.
19991999
public init(
20002000
state: Components.Parameters.secret_hyphen_scanning_hyphen_alert_hyphen_state? = nil,
@@ -2262,11 +2262,11 @@ public enum Operations {
22622262
///
22632263
/// - Remark: Generated from `#/paths/orgs/{org}/secret-scanning/alerts/GET/query/direction`.
22642264
public var direction: Components.Parameters.direction?
2265-
/// Page number of the results to fetch.
2265+
/// The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
22662266
///
22672267
/// - Remark: Generated from `#/paths/orgs/{org}/secret-scanning/alerts/GET/query/page`.
22682268
public var page: Components.Parameters.page?
2269-
/// The number of results per page (max 100).
2269+
/// The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
22702270
///
22712271
/// - Remark: Generated from `#/paths/orgs/{org}/secret-scanning/alerts/GET/query/per_page`.
22722272
public var per_page: Components.Parameters.per_hyphen_page?
@@ -2290,8 +2290,8 @@ public enum Operations {
22902290
/// - resolution: A comma-separated list of resolutions. Only secret scanning alerts with one of these resolutions are listed. Valid resolutions are `false_positive`, `wont_fix`, `revoked`, `pattern_edited`, `pattern_deleted` or `used_in_tests`.
22912291
/// - sort: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved.
22922292
/// - direction: The direction to sort the results by.
2293-
/// - page: Page number of the results to fetch.
2294-
/// - per_page: The number of results per page (max 100).
2293+
/// - page: The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
2294+
/// - per_page: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
22952295
/// - before: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To receive an initial cursor on your first request, include an empty "before" query string.
22962296
/// - after: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To receive an initial cursor on your first request, include an empty "after" query string.
22972297
/// - validity: A comma-separated list of validities that, when present, will return alerts that match the validities in this list. Valid options are `active`, `inactive`, and `unknown`.
@@ -2572,11 +2572,11 @@ public enum Operations {
25722572
///
25732573
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/secret-scanning/alerts/GET/query/direction`.
25742574
public var direction: Components.Parameters.direction?
2575-
/// Page number of the results to fetch.
2575+
/// The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
25762576
///
25772577
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/secret-scanning/alerts/GET/query/page`.
25782578
public var page: Components.Parameters.page?
2579-
/// The number of results per page (max 100).
2579+
/// The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
25802580
///
25812581
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/secret-scanning/alerts/GET/query/per_page`.
25822582
public var per_page: Components.Parameters.per_hyphen_page?
@@ -2600,8 +2600,8 @@ public enum Operations {
26002600
/// - resolution: A comma-separated list of resolutions. Only secret scanning alerts with one of these resolutions are listed. Valid resolutions are `false_positive`, `wont_fix`, `revoked`, `pattern_edited`, `pattern_deleted` or `used_in_tests`.
26012601
/// - sort: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved.
26022602
/// - direction: The direction to sort the results by.
2603-
/// - page: Page number of the results to fetch.
2604-
/// - per_page: The number of results per page (max 100).
2603+
/// - page: The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
2604+
/// - per_page: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
26052605
/// - before: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To receive an initial cursor on your first request, include an empty "before" query string.
26062606
/// - after: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To receive an initial cursor on your first request, include an empty "after" query string.
26072607
/// - validity: A comma-separated list of validities that, when present, will return alerts that match the validities in this list. Valid options are `active`, `inactive`, and `unknown`.
@@ -3356,19 +3356,19 @@ public enum Operations {
33563356
public var path: Operations.secret_hyphen_scanning_sol_list_hyphen_locations_hyphen_for_hyphen_alert.Input.Path
33573357
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}/locations/GET/query`.
33583358
public struct Query: Sendable, Hashable {
3359-
/// Page number of the results to fetch.
3359+
/// The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
33603360
///
33613361
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}/locations/GET/query/page`.
33623362
public var page: Components.Parameters.page?
3363-
/// The number of results per page (max 100).
3363+
/// The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
33643364
///
33653365
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}/locations/GET/query/per_page`.
33663366
public var per_page: Components.Parameters.per_hyphen_page?
33673367
/// Creates a new `Query`.
33683368
///
33693369
/// - Parameters:
3370-
/// - page: Page number of the results to fetch.
3371-
/// - per_page: The number of results per page (max 100).
3370+
/// - page: The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
3371+
/// - per_page: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
33723372
public init(
33733373
page: Components.Parameters.page? = nil,
33743374
per_page: Components.Parameters.per_hyphen_page? = nil

0 commit comments

Comments
 (0)