Skip to content

Commit 3dddf44

Browse files
Commit via running: make Sources/actions
1 parent 559da38 commit 3dddf44

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

Sources/actions/Types.swift

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7720,37 +7720,37 @@ public enum Components {
77207720
}
77217721
/// Provides details of a hosted runner image
77227722
///
7723-
/// - Remark: Generated from `#/components/schemas/actions-hosted-runner-image`.
7724-
public struct ActionsHostedRunnerImage: Codable, Hashable, Sendable {
7723+
/// - Remark: Generated from `#/components/schemas/actions-hosted-runner-curated-image`.
7724+
public struct ActionsHostedRunnerCuratedImage: Codable, Hashable, Sendable {
77257725
/// The ID of the image. Use this ID for the `image` parameter when creating a new larger runner.
77267726
///
7727-
/// - Remark: Generated from `#/components/schemas/actions-hosted-runner-image/id`.
7727+
/// - Remark: Generated from `#/components/schemas/actions-hosted-runner-curated-image/id`.
77287728
public var id: Swift.String
77297729
/// The operating system of the image.
77307730
///
7731-
/// - Remark: Generated from `#/components/schemas/actions-hosted-runner-image/platform`.
7731+
/// - Remark: Generated from `#/components/schemas/actions-hosted-runner-curated-image/platform`.
77327732
public var platform: Swift.String
77337733
/// Image size in GB.
77347734
///
7735-
/// - Remark: Generated from `#/components/schemas/actions-hosted-runner-image/size_gb`.
7735+
/// - Remark: Generated from `#/components/schemas/actions-hosted-runner-curated-image/size_gb`.
77367736
public var sizeGb: Swift.Int
77377737
/// Display name for this image.
77387738
///
7739-
/// - Remark: Generated from `#/components/schemas/actions-hosted-runner-image/display_name`.
7739+
/// - Remark: Generated from `#/components/schemas/actions-hosted-runner-curated-image/display_name`.
77407740
public var displayName: Swift.String
77417741
/// The image provider.
77427742
///
7743-
/// - Remark: Generated from `#/components/schemas/actions-hosted-runner-image/source`.
7743+
/// - Remark: Generated from `#/components/schemas/actions-hosted-runner-curated-image/source`.
77447744
@frozen public enum SourcePayload: String, Codable, Hashable, Sendable, CaseIterable {
77457745
case github = "github"
77467746
case partner = "partner"
77477747
case custom = "custom"
77487748
}
77497749
/// The image provider.
77507750
///
7751-
/// - Remark: Generated from `#/components/schemas/actions-hosted-runner-image/source`.
7752-
public var source: Components.Schemas.ActionsHostedRunnerImage.SourcePayload
7753-
/// Creates a new `ActionsHostedRunnerImage`.
7751+
/// - Remark: Generated from `#/components/schemas/actions-hosted-runner-curated-image/source`.
7752+
public var source: Components.Schemas.ActionsHostedRunnerCuratedImage.SourcePayload
7753+
/// Creates a new `ActionsHostedRunnerCuratedImage`.
77547754
///
77557755
/// - Parameters:
77567756
/// - id: The ID of the image. Use this ID for the `image` parameter when creating a new larger runner.
@@ -7763,7 +7763,7 @@ public enum Components {
77637763
platform: Swift.String,
77647764
sizeGb: Swift.Int,
77657765
displayName: Swift.String,
7766-
source: Components.Schemas.ActionsHostedRunnerImage.SourcePayload
7766+
source: Components.Schemas.ActionsHostedRunnerCuratedImage.SourcePayload
77677767
) {
77687768
self.id = id
77697769
self.platform = platform
@@ -12609,15 +12609,15 @@ public enum Operations {
1260912609
/// - Remark: Generated from `#/paths/orgs/{org}/actions/hosted-runners/images/github-owned/GET/responses/200/content/json/total_count`.
1261012610
public var totalCount: Swift.Int
1261112611
/// - Remark: Generated from `#/paths/orgs/{org}/actions/hosted-runners/images/github-owned/GET/responses/200/content/json/images`.
12612-
public var images: [Components.Schemas.ActionsHostedRunnerImage]
12612+
public var images: [Components.Schemas.ActionsHostedRunnerCuratedImage]
1261312613
/// Creates a new `JsonPayload`.
1261412614
///
1261512615
/// - Parameters:
1261612616
/// - totalCount:
1261712617
/// - images:
1261812618
public init(
1261912619
totalCount: Swift.Int,
12620-
images: [Components.Schemas.ActionsHostedRunnerImage]
12620+
images: [Components.Schemas.ActionsHostedRunnerCuratedImage]
1262112621
) {
1262212622
self.totalCount = totalCount
1262312623
self.images = images
@@ -12764,15 +12764,15 @@ public enum Operations {
1276412764
/// - Remark: Generated from `#/paths/orgs/{org}/actions/hosted-runners/images/partner/GET/responses/200/content/json/total_count`.
1276512765
public var totalCount: Swift.Int
1276612766
/// - Remark: Generated from `#/paths/orgs/{org}/actions/hosted-runners/images/partner/GET/responses/200/content/json/images`.
12767-
public var images: [Components.Schemas.ActionsHostedRunnerImage]
12767+
public var images: [Components.Schemas.ActionsHostedRunnerCuratedImage]
1276812768
/// Creates a new `JsonPayload`.
1276912769
///
1277012770
/// - Parameters:
1277112771
/// - totalCount:
1277212772
/// - images:
1277312773
public init(
1277412774
totalCount: Swift.Int,
12775-
images: [Components.Schemas.ActionsHostedRunnerImage]
12775+
images: [Components.Schemas.ActionsHostedRunnerCuratedImage]
1277612776
) {
1277712777
self.totalCount = totalCount
1277812778
self.images = images

0 commit comments

Comments
 (0)