You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: api/swagger-spec/oapi-v1.json
+11-1
Original file line number
Diff line number
Diff line change
@@ -29022,7 +29022,7 @@
29022
29022
},
29023
29023
"from": {
29024
29024
"$ref": "v1.ObjectReference",
29025
-
"description": "Optional; if specified, a reference to another image that this tag should point to. Valid values are ImageStreamTag, ImageStreamImage, and DockerImage."
29025
+
"description": "Optional; if specified, a reference to another image that this tag should point to. Valid values are ImageStreamTag, ImageStreamImage, and DockerImage. ImageStreamTag references can only reference a tag within this same ImageStream."
29026
29026
},
29027
29027
"reference": {
29028
29028
"type": "boolean",
@@ -29682,6 +29682,11 @@
29682
29682
"refreshToken": {
29683
29683
"type": "string",
29684
29684
"description": "RefreshToken is the value by which this token can be renewed. Can be blank."
29685
+
},
29686
+
"inactivityTimeoutSeconds": {
29687
+
"type": "integer",
29688
+
"format": "int32",
29689
+
"description": "InactivityTimeoutSeconds is the value in seconds, from the CreationTimestamp, after which this token can no longer be used. The value is automatically incremented when the token is used."
29685
29690
}
29686
29691
}
29687
29692
},
@@ -29917,6 +29922,11 @@
29917
29922
"type": "integer",
29918
29923
"format": "int32",
29919
29924
"description": "AccessTokenMaxAgeSeconds overrides the default access token max age for tokens granted to this client. 0 means no expiration."
29925
+
},
29926
+
"accessTokenInactivityTimeoutSeconds": {
29927
+
"type": "integer",
29928
+
"format": "int32",
29929
+
"description": "AccessTokenInactivityTimeoutSeconds overrides the default token inactivity timeout for tokens granted to this client. The value represents the maximum amount of time that can occur between consecutive uses of the token. Tokens become invalid if they are not used within this temporal window. The user will need to acquire a new token to regain access once a token times out. This value needs to be set only if the default set in configuration is not appropriate for this client. Valid values are: - 0: Tokens for this client never time out - X: Tokens time out if there is no activity for X seconds The current minimum allowed value for X is 300 (5 minutes)"
0 commit comments