File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2421,12 +2421,14 @@ input CreateImageCredentialsInput {
24212421 label : String !
24222422 username : String !
24232423 password : String !
2424+ serveraddress : String
24242425}
24252426
24262427enum ImageCredentialsSortField {
24272428 ID
24282429 LABEL
24292430 USERNAME
2431+ SERVERADDRESS
24302432}
24312433
24322434":image_credentials connection"
@@ -2450,6 +2452,19 @@ type ImageCredentialsEdge {
24502452 node : ImageCredentials !
24512453}
24522454
2455+ input ImageCredentialsFilterServeraddress {
2456+ isNil : Boolean
2457+ eq : String
2458+ notEq : String
2459+ in : [String ]
2460+ lessThan : String
2461+ greaterThan : String
2462+ lessThanOrEqual : String
2463+ greaterThanOrEqual : String
2464+ like : String
2465+ ilike : String
2466+ }
2467+
24532468input ImageCredentialsFilterUsername {
24542469 isNil : Boolean
24552470 eq : String
@@ -2494,6 +2509,7 @@ input ImageCredentialsFilterInput {
24942509 id : ImageCredentialsFilterId
24952510 label : ImageCredentialsFilterLabel
24962511 username : ImageCredentialsFilterUsername
2512+ serveraddress : ImageCredentialsFilterServeraddress
24972513}
24982514
24992515input ImageCredentialsSortInput {
@@ -2512,6 +2528,7 @@ type ImageCredentials implements Node {
25122528 id : ID !
25132529 label : String !
25142530 username : String !
2531+ serveraddress : String
25152532}
25162533
25172534input ImageDeploymentFilterImageId {
You can’t perform that action at this time.
0 commit comments