Skip to content

Commit

Permalink
Merge pull request #169 from buildkite/buildkite-docs-bot/graphql/566…
Browse files Browse the repository at this point in the history
…3d848

Update GraphQL docs
  • Loading branch information
gilesgas authored Dec 19, 2024
2 parents 61b4e50 + fff5919 commit 67c8166
Show file tree
Hide file tree
Showing 9 changed files with 164 additions and 11 deletions.
47 changes: 40 additions & 7 deletions data/graphql/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -2178,11 +2178,6 @@ input ClusterQueueCreateInput {
"""
description: String

"""
Hosted or self-hosted for the queue
"""
hosted: Boolean

"""
Settings for hosted agents on this queue
"""
Expand Down Expand Up @@ -2825,7 +2820,7 @@ type HostedAgentMacOSSettingsType {
"""
The Xcode version to pre-select (via xcode-select) on macOS hosted agent instances for this cluster queue.
"""
baseImageXcodeVersion: String
xcodeVersion: String
}

"""
Expand Down Expand Up @@ -2898,6 +2893,34 @@ enum HostedAgentSize {
SMALL
}

"""
Settings for Linux hosted agents on this queue
"""
input HostedAgentsLinuxPlatformSettingsInput {
"""
Hosted Agents: The url to a custom agent image the hosted agent instance utilises for this cluster queue
"""
agentImageRef: String
}

"""
Settings for Mac hosted agents on this queue
"""
input HostedAgentsMacosPlatformSettingsInput {
"""
The Xcode version to pre-select (via xcode-select) on macOS hosted agent instances for this cluster queue
"""
xcodeVersion: String
}

"""
Settings for hosted agents on this queue
"""
input HostedAgentsPlatformSettingsInput {
linux: HostedAgentsLinuxPlatformSettingsInput
macos: HostedAgentsMacosPlatformSettingsInput
}

"""
Settings for hosted agents on this queue
"""
Expand All @@ -2906,21 +2929,31 @@ input HostedAgentsQueueSettingsCreateInput {
Hosted agent instance shape
"""
instanceShape: HostedAgentInstanceShapeName!

"""
Per-platform settings for hosted agents on this queue
"""
platformSettings: HostedAgentsPlatformSettingsInput
}

"""
Settings for hosted agents on this queue
"""
input HostedAgentsQueueSettingsUpdateInput {
"""
Hosted Agents: The url to a custom agent image the hosted agent instance utilises for this cluster queue
Deprecated: Use `platformSetting.linux.agentImageRef instead`
"""
agentImageRef: String

"""
Hosted agent instance shape
"""
instanceShape: HostedAgentInstanceShapeName

"""
Per-platform settings for hosted agents on this queue
"""
platformSettings: HostedAgentsPlatformSettingsInput
}

"""
Expand Down
6 changes: 6 additions & 0 deletions data/nav_graphql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1068,6 +1068,12 @@
path: apis/graphql/schemas/input-object/emailresendverificationinput
- name: GraphQLSnippetCreateInput
path: apis/graphql/schemas/input-object/graphqlsnippetcreateinput
- name: HostedAgentsLinuxPlatformSettingsInput
path: apis/graphql/schemas/input-object/hostedagentslinuxplatformsettingsinput
- name: HostedAgentsMacosPlatformSettingsInput
path: apis/graphql/schemas/input-object/hostedagentsmacosplatformsettingsinput
- name: HostedAgentsPlatformSettingsInput
path: apis/graphql/schemas/input-object/hostedagentsplatformsettingsinput
- name: HostedAgentsQueueSettingsCreateInput
path: apis/graphql/schemas/input-object/hostedagentsqueuesettingscreateinput
- name: HostedAgentsQueueSettingsUpdateInput
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 67c8166

Please sign in to comment.