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 77
88type (
99 IAppProxyIscAPI interface {
10- RemoveRuntimeFromIscRepo (ctx context.Context , runtimeName string ) (int , error )
10+ RemoveRuntimeFromIscRepo (ctx context.Context ) (int , error )
1111 }
1212
1313 appProxyIsc struct {
@@ -26,18 +26,13 @@ func newAppProxyIscAPI(c *codefresh) IAppProxyIscAPI {
2626 return & appProxyIsc {codefresh : c }
2727}
2828
29- func (c * appProxyIsc ) RemoveRuntimeFromIscRepo (ctx context.Context , runtimeName string ) (int , error ) {
29+ func (c * appProxyIsc ) RemoveRuntimeFromIscRepo (ctx context.Context ) (int , error ) {
3030 jsonData := map [string ]interface {}{
3131 "query" : `
32- mutation RemoveRuntimeFromIscRepo(
33- $runtime: String!
34- ) {
35- removeRuntimeFromIscRepo(runtime: $runtime)
32+ mutation RemoveRuntimeFromIscRepo {
33+ removeRuntimeFromIscRepo
3634 }
3735 ` ,
38- "variables" : map [string ]interface {}{
39- "runtime" : runtimeName ,
40- },
4136 }
4237
4338 res := & graphqlAppProxyRemoveRuntimeFromIscRepoResponse {}
You can’t perform that action at this time.
0 commit comments