Skip to content

Commit c564a46

Browse files
chore: update api schema dump
Co-authored-by: octodog <mu001@lablup.com>
1 parent cd4c40c commit c564a46

2 files changed

Lines changed: 44 additions & 0 deletions

File tree

docs/manager/graphql-reference/supergraph.graphql

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7718,6 +7718,9 @@ type Mutation
77187718
"""Added in 25.16.0"""
77197719
addModelRevision(input: AddRevisionInput!): AddRevisionPayload! @join__field(graph: STRAWBERRY)
77207720

7721+
"""Added in 26.4.0"""
7722+
updateDeploymentPolicy(input: UpdateDeploymentPolicyInput!): UpdateDeploymentPolicyPayload! @join__field(graph: STRAWBERRY)
7723+
77217724
"""Create a new notification channel (admin only)"""
77227725
adminCreateNotificationChannel(input: CreateNotificationChannelInput!): CreateNotificationChannelPayload! @join__field(graph: STRAWBERRY)
77237726

@@ -12942,6 +12945,27 @@ type UpdateDeploymentPayload
1294212945
deployment: ModelDeployment!
1294312946
}
1294412947

12948+
"""
12949+
Added in 26.3.0. Input for updating a deployment policy. Internally upserts the policy.
12950+
"""
12951+
input UpdateDeploymentPolicyInput
12952+
@join__type(graph: STRAWBERRY)
12953+
{
12954+
deploymentId: ID!
12955+
strategy: DeploymentStrategyType!
12956+
rollbackOnFailure: Boolean! = false
12957+
rollingUpdate: RollingUpdateConfigInput = null
12958+
blueGreen: BlueGreenConfigInput = null
12959+
}
12960+
12961+
"""Added in 26.3.0. Result of updating a deployment policy."""
12962+
type UpdateDeploymentPolicyPayload
12963+
@join__type(graph: STRAWBERRY)
12964+
{
12965+
deploymentPolicy: DeploymentPolicy!
12966+
created: Boolean!
12967+
}
12968+
1294512969
"""Added in 25.14.0"""
1294612970
input UpdateHuggingFaceRegistryInput
1294712971
@join__type(graph: STRAWBERRY)

docs/manager/graphql-reference/v2-schema.graphql

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4074,6 +4074,9 @@ type Mutation {
40744074
"""Added in 25.16.0"""
40754075
addModelRevision(input: AddRevisionInput!): AddRevisionPayload!
40764076

4077+
"""Added in 26.4.0"""
4078+
updateDeploymentPolicy(input: UpdateDeploymentPolicyInput!): UpdateDeploymentPolicyPayload!
4079+
40774080
"""Create a new notification channel (admin only)"""
40784081
adminCreateNotificationChannel(input: CreateNotificationChannelInput!): CreateNotificationChannelPayload!
40794082

@@ -7885,6 +7888,23 @@ type UpdateDeploymentPayload {
78857888
deployment: ModelDeployment!
78867889
}
78877890

7891+
"""
7892+
Added in 26.3.0. Input for updating a deployment policy. Internally upserts the policy.
7893+
"""
7894+
input UpdateDeploymentPolicyInput {
7895+
deploymentId: ID!
7896+
strategy: DeploymentStrategyType!
7897+
rollbackOnFailure: Boolean! = false
7898+
rollingUpdate: RollingUpdateConfigInput = null
7899+
blueGreen: BlueGreenConfigInput = null
7900+
}
7901+
7902+
"""Added in 26.3.0. Result of updating a deployment policy."""
7903+
type UpdateDeploymentPolicyPayload {
7904+
deploymentPolicy: DeploymentPolicy!
7905+
created: Boolean!
7906+
}
7907+
78887908
"""Added in 25.14.0"""
78897909
input UpdateHuggingFaceRegistryInput {
78907910
id: ID!

0 commit comments

Comments
 (0)