Skip to content

Commit 2b9c689

Browse files
committed
[Make] Sync *.swift
1 parent d99fc7c commit 2b9c689

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

Sources/code-scanning/Types.swift

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2716,11 +2716,11 @@ public enum Components {
27162716
}
27172717
/// Types generated from the `#/components/parameters` section of the OpenAPI document.
27182718
public enum Parameters {
2719-
/// 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.
2719+
/// 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)."
27202720
///
27212721
/// - Remark: Generated from `#/components/parameters/pagination-before`.
27222722
public typealias pagination_hyphen_before = Swift.String
2723-
/// 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.
2723+
/// 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)."
27242724
///
27252725
/// - Remark: Generated from `#/components/parameters/pagination-after`.
27262726
public typealias pagination_hyphen_after = Swift.String
@@ -2731,11 +2731,11 @@ public enum Components {
27312731
case asc = "asc"
27322732
case desc = "desc"
27332733
}
2734-
/// The number of results per page (max 100).
2734+
/// 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)."
27352735
///
27362736
/// - Remark: Generated from `#/components/parameters/per-page`.
27372737
public typealias per_hyphen_page = Swift.Int
2738-
/// Page number of the results to fetch.
2738+
/// 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)."
27392739
///
27402740
/// - Remark: Generated from `#/components/parameters/page`.
27412741
public typealias page = Swift.Int
@@ -3049,19 +3049,19 @@ public enum Operations {
30493049
///
30503050
/// - Remark: Generated from `#/paths/orgs/{org}/code-scanning/alerts/GET/query/tool_guid`.
30513051
public var tool_guid: Components.Parameters.tool_hyphen_guid?
3052-
/// 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.
3052+
/// 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)."
30533053
///
30543054
/// - Remark: Generated from `#/paths/orgs/{org}/code-scanning/alerts/GET/query/before`.
30553055
public var before: Components.Parameters.pagination_hyphen_before?
3056-
/// 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.
3056+
/// 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)."
30573057
///
30583058
/// - Remark: Generated from `#/paths/orgs/{org}/code-scanning/alerts/GET/query/after`.
30593059
public var after: Components.Parameters.pagination_hyphen_after?
3060-
/// Page number of the results to fetch.
3060+
/// 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)."
30613061
///
30623062
/// - Remark: Generated from `#/paths/orgs/{org}/code-scanning/alerts/GET/query/page`.
30633063
public var page: Components.Parameters.page?
3064-
/// The number of results per page (max 100).
3064+
/// 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)."
30653065
///
30663066
/// - Remark: Generated from `#/paths/orgs/{org}/code-scanning/alerts/GET/query/per_page`.
30673067
public var per_page: Components.Parameters.per_hyphen_page?
@@ -3096,10 +3096,10 @@ public enum Operations {
30963096
/// - Parameters:
30973097
/// - tool_name: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, but not both.
30983098
/// - tool_guid: The GUID of a code scanning tool. Only results by this tool will be listed. Note that some code scanning tools may not include a GUID in their analysis data. You can specify the tool by using either `tool_guid` or `tool_name`, but not both.
3099-
/// - 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.
3100-
/// - 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.
3101-
/// - page: Page number of the results to fetch.
3102-
/// - per_page: The number of results per page (max 100).
3099+
/// - 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)."
3100+
/// - 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)."
3101+
/// - 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)."
3102+
/// - 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)."
31033103
/// - direction: The direction to sort the results by.
31043104
/// - state: If specified, only code scanning alerts with this state will be returned.
31053105
/// - sort: The property by which to sort the results.
@@ -3354,11 +3354,11 @@ public enum Operations {
33543354
///
33553355
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/code-scanning/alerts/GET/query/tool_guid`.
33563356
public var tool_guid: Components.Parameters.tool_hyphen_guid?
3357-
/// Page number of the results to fetch.
3357+
/// 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)."
33583358
///
33593359
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/code-scanning/alerts/GET/query/page`.
33603360
public var page: Components.Parameters.page?
3361-
/// The number of results per page (max 100).
3361+
/// 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)."
33623362
///
33633363
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/code-scanning/alerts/GET/query/per_page`.
33643364
public var per_page: Components.Parameters.per_hyphen_page?
@@ -3397,8 +3397,8 @@ public enum Operations {
33973397
/// - Parameters:
33983398
/// - tool_name: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, but not both.
33993399
/// - tool_guid: The GUID of a code scanning tool. Only results by this tool will be listed. Note that some code scanning tools may not include a GUID in their analysis data. You can specify the tool by using either `tool_guid` or `tool_name`, but not both.
3400-
/// - page: Page number of the results to fetch.
3401-
/// - per_page: The number of results per page (max 100).
3400+
/// - 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)."
3401+
/// - 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)."
34023402
/// - ref: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/<branch name>` or simply `<branch name>`. To reference a pull request use `refs/pull/<number>/merge`.
34033403
/// - direction: The direction to sort the results by.
34043404
/// - sort: The property by which to sort the results.
@@ -4169,11 +4169,11 @@ public enum Operations {
41694169
public var path: Operations.code_hyphen_scanning_sol_list_hyphen_alert_hyphen_instances.Input.Path
41704170
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/instances/GET/query`.
41714171
public struct Query: Sendable, Hashable {
4172-
/// Page number of the results to fetch.
4172+
/// 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)."
41734173
///
41744174
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/instances/GET/query/page`.
41754175
public var page: Components.Parameters.page?
4176-
/// The number of results per page (max 100).
4176+
/// 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)."
41774177
///
41784178
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/instances/GET/query/per_page`.
41794179
public var per_page: Components.Parameters.per_hyphen_page?
@@ -4184,8 +4184,8 @@ public enum Operations {
41844184
/// Creates a new `Query`.
41854185
///
41864186
/// - Parameters:
4187-
/// - page: Page number of the results to fetch.
4188-
/// - per_page: The number of results per page (max 100).
4187+
/// - 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)."
4188+
/// - 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)."
41894189
/// - ref: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/<branch name>` or simply `<branch name>`. To reference a pull request use `refs/pull/<number>/merge`.
41904190
public init(
41914191
page: Components.Parameters.page? = nil,
@@ -4436,11 +4436,11 @@ public enum Operations {
44364436
///
44374437
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/code-scanning/analyses/GET/query/tool_guid`.
44384438
public var tool_guid: Components.Parameters.tool_hyphen_guid?
4439-
/// Page number of the results to fetch.
4439+
/// 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)."
44404440
///
44414441
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/code-scanning/analyses/GET/query/page`.
44424442
public var page: Components.Parameters.page?
4443-
/// The number of results per page (max 100).
4443+
/// 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)."
44444444
///
44454445
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/code-scanning/analyses/GET/query/per_page`.
44464446
public var per_page: Components.Parameters.per_hyphen_page?
@@ -4474,8 +4474,8 @@ public enum Operations {
44744474
/// - Parameters:
44754475
/// - tool_name: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, but not both.
44764476
/// - tool_guid: The GUID of a code scanning tool. Only results by this tool will be listed. Note that some code scanning tools may not include a GUID in their analysis data. You can specify the tool by using either `tool_guid` or `tool_name`, but not both.
4477-
/// - page: Page number of the results to fetch.
4478-
/// - per_page: The number of results per page (max 100).
4477+
/// - 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)."
4478+
/// - 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)."
44794479
/// - ref: The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either as `refs/heads/<branch name>` or simply `<branch name>`. To reference a pull request use `refs/pull/<number>/merge`.
44804480
/// - sarif_id: Filter analyses belonging to the same SARIF upload.
44814481
/// - direction: The direction to sort the results by.

0 commit comments

Comments
 (0)