Skip to content

Commit

Permalink
add detachServiceDeployment
Browse files Browse the repository at this point in the history
  • Loading branch information
zreigz committed May 8, 2024
1 parent 3fca6b0 commit 71ceeaf
Show file tree
Hide file tree
Showing 4 changed files with 205 additions and 1 deletion.
189 changes: 189 additions & 0 deletions client.go

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

6 changes: 6 additions & 0 deletions graph/deployment.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@ mutation DeleteServiceDeployment($id: ID!) {
}
}

mutation DetachServiceDeployment($id: ID!) {
detachServiceDeployment(id: $id) {
...ServiceDeploymentFragment
}
}

mutation UpdateServiceDeployment($id: ID!, $attributes: ServiceUpdateAttributes!) {
updateServiceDeployment(id: $id, attributes: $attributes) {
...ServiceDeploymentExtended
Expand Down
7 changes: 6 additions & 1 deletion models_gen.go

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

4 changes: 4 additions & 0 deletions schema/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -941,6 +941,7 @@ enum StepStage {
PLAN
VERIFY
APPLY
INIT
}

input StackAttributes {
Expand Down Expand Up @@ -4581,6 +4582,9 @@ type ResourceSpec {
}

type KubernetesUnstructured {
group: String
version: String!
kind: String!
raw: Map
metadata: Metadata!
events: [Event]
Expand Down

0 comments on commit 71ceeaf

Please sign in to comment.