File tree Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Original file line number Diff line number Diff line change 1
- 0.44.0
1
+ 0.44.1
Original file line number Diff line number Diff line change 7
7
8
8
type (
9
9
IAppProxyIscAPI interface {
10
- RemoveRuntimeFromIscRepo (ctx context.Context , runtimeName string ) (int , error )
10
+ RemoveRuntimeFromIscRepo (ctx context.Context ) (int , error )
11
11
}
12
12
13
13
appProxyIsc struct {
@@ -26,18 +26,13 @@ func newAppProxyIscAPI(c *codefresh) IAppProxyIscAPI {
26
26
return & appProxyIsc {codefresh : c }
27
27
}
28
28
29
- func (c * appProxyIsc ) RemoveRuntimeFromIscRepo (ctx context.Context , runtimeName string ) (int , error ) {
29
+ func (c * appProxyIsc ) RemoveRuntimeFromIscRepo (ctx context.Context ) (int , error ) {
30
30
jsonData := map [string ]interface {}{
31
31
"query" : `
32
- mutation RemoveRuntimeFromIscRepo(
33
- $runtime: String!
34
- ) {
35
- removeRuntimeFromIscRepo(runtime: $runtime)
32
+ mutation RemoveRuntimeFromIscRepo {
33
+ removeRuntimeFromIscRepo
36
34
}
37
35
` ,
38
- "variables" : map [string ]interface {}{
39
- "runtime" : runtimeName ,
40
- },
41
36
}
42
37
43
38
res := & graphqlAppProxyRemoveRuntimeFromIscRepoResponse {}
You can’t perform that action at this time.
0 commit comments