File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2385,12 +2385,14 @@ input CreateImageCredentialsInput {
23852385 label : String !
23862386 username : String !
23872387 password : String !
2388+ serveraddress : String
23882389}
23892390
23902391enum ImageCredentialsSortField {
23912392 ID
23922393 LABEL
23932394 USERNAME
2395+ SERVERADDRESS
23942396}
23952397
23962398":image_credentials connection"
@@ -2414,6 +2416,19 @@ type ImageCredentialsEdge {
24142416 node : ImageCredentials !
24152417}
24162418
2419+ input ImageCredentialsFilterServeraddress {
2420+ isNil : Boolean
2421+ eq : String
2422+ notEq : String
2423+ in : [String ]
2424+ lessThan : String
2425+ greaterThan : String
2426+ lessThanOrEqual : String
2427+ greaterThanOrEqual : String
2428+ like : String
2429+ ilike : String
2430+ }
2431+
24172432input ImageCredentialsFilterUsername {
24182433 isNil : Boolean
24192434 eq : String
@@ -2458,6 +2473,7 @@ input ImageCredentialsFilterInput {
24582473 id : ImageCredentialsFilterId
24592474 label : ImageCredentialsFilterLabel
24602475 username : ImageCredentialsFilterUsername
2476+ serveraddress : ImageCredentialsFilterServeraddress
24612477}
24622478
24632479input ImageCredentialsSortInput {
@@ -2476,6 +2492,7 @@ type ImageCredentials implements Node {
24762492 id : ID !
24772493 label : String !
24782494 username : String !
2495+ serveraddress : String
24792496}
24802497
24812498input ImageDeploymentFilterImageId {
You can’t perform that action at this time.
0 commit comments