From 323ba982f187ed9099fda9ea01aa8c5d7391b7ba Mon Sep 17 00:00:00 2001 From: Jong Eun Lee Date: Thu, 2 Nov 2023 12:26:41 +0800 Subject: [PATCH] update latest graphql shcmea --- react/data/schema.graphql | 49 ++++++++++++++++++++------------------- 1 file changed, 25 insertions(+), 24 deletions(-) diff --git a/react/data/schema.graphql b/react/data/schema.graphql index d73f470f54..05d1a9d3e0 100644 --- a/react/data/schema.graphql +++ b/react/data/schema.graphql @@ -1,4 +1,5 @@ -# PR #1677 https://github.com/lablup/backend.ai/pull/1677 +# PR #1680 27ab15e5297862f0bf2717b6b0b98d99eb609e26 + schema { query: Queries mutation: Mutations @@ -407,9 +408,9 @@ type KeyPairResourcePolicy { max_containers_per_session: Int idle_timeout: BigInt allowed_vfolder_hosts: JSONString - max_vfolder_count: Int @deprecated(reason: "Deprecated since 23.09.4") - max_vfolder_size: BigInt @deprecated(reason: "Deprecated since 23.09.4") - max_quota_scope_size: BigInt @deprecated(reason: "Deprecated since 23.09.4") + max_vfolder_count: Int @deprecated(reason: "Deprecated since 23.09.4.") + max_vfolder_size: BigInt @deprecated(reason: "Deprecated since 23.09.4.") + max_quota_scope_size: BigInt @deprecated(reason: "Deprecated since 23.09.4.") } type UserResourcePolicy { @@ -417,12 +418,12 @@ type UserResourcePolicy { name: String! created_at: DateTime! - """Added since 24.03.1""" + """Added since 24.03.1. Limitation of the number of user vfolders.""" max_vfolder_count: Int - max_vfolder_size: BigInt @deprecated(reason: "Deprecated since 23.09.1") - """Added since 24.03.1""" + """Added since 24.03.1. Limitation of the quota size of user vfolders.""" max_quota_scope_size: BigInt + max_vfolder_size: BigInt @deprecated(reason: "Deprecated since 23.09.1.") } type ProjectResourcePolicy { @@ -430,12 +431,12 @@ type ProjectResourcePolicy { name: String! created_at: DateTime! - """Added since 24.03.1""" + """Added since 24.03.1. Limitation of the number of project vfolders.""" max_vfolder_count: Int - max_vfolder_size: BigInt @deprecated(reason: "Deprecated since 23.09.1") - """Added since 24.03.1""" + """Added since 24.03.1. Limitation of the quota size of project vfolders.""" max_quota_scope_size: BigInt + max_vfolder_size: BigInt @deprecated(reason: "Deprecated since 23.09.1.") } type ResourcePreset { @@ -1077,9 +1078,9 @@ input CreateKeyPairResourcePolicyInput { max_containers_per_session: Int! idle_timeout: BigInt! allowed_vfolder_hosts: JSONString - max_vfolder_count: Int @deprecated(reason: "Deprecated since 23.09.4") - max_vfolder_size: BigInt @deprecated(reason: "Deprecated since 23.09.4") - max_quota_scope_size: BigInt @deprecated(reason: "Deprecated since 23.09.4") + max_vfolder_count: Int @deprecated(reason: "Deprecated since 23.09.4.") + max_vfolder_size: BigInt @deprecated(reason: "Deprecated since 23.09.4.") + max_quota_scope_size: BigInt @deprecated(reason: "Deprecated since 23.09.4.") } type ModifyKeyPairResourcePolicy { @@ -1095,9 +1096,9 @@ input ModifyKeyPairResourcePolicyInput { max_containers_per_session: Int idle_timeout: BigInt allowed_vfolder_hosts: JSONString - max_vfolder_count: Int @deprecated(reason: "Deprecated since 23.09.4") - max_vfolder_size: BigInt @deprecated(reason: "Deprecated since 23.09.4") - max_quota_scope_size: BigInt @deprecated(reason: "Deprecated since 23.09.4") + max_vfolder_count: Int @deprecated(reason: "Deprecated since 23.09.4.") + max_vfolder_size: BigInt @deprecated(reason: "Deprecated since 23.09.4.") + max_quota_scope_size: BigInt @deprecated(reason: "Deprecated since 23.09.4.") } type DeleteKeyPairResourcePolicy { @@ -1112,10 +1113,10 @@ type CreateUserResourcePolicy { } input CreateUserResourcePolicyInput { - """Added since 24.03.1""" + """Added since 24.03.1. Limitation of the number of user vfolders.""" max_vfolder_count: Int - """Added since 24.03.1""" + """Added since 24.03.1. Limitation of the quota size of user vfolders.""" max_quota_scope_size: BigInt } @@ -1125,10 +1126,10 @@ type ModifyUserResourcePolicy { } input ModifyUserResourcePolicyInput { - """Added since 24.03.1""" + """Added since 24.03.1. Limitation of the number of user vfolders.""" max_vfolder_count: Int - """Added since 24.03.1""" + """Added since 24.03.1. Limitation of the quota size of user vfolders.""" max_quota_scope_size: BigInt } @@ -1144,10 +1145,10 @@ type CreateProjectResourcePolicy { } input CreateProjectResourcePolicyInput { - """Added since 24.03.1""" + """Added since 24.03.1. Limitation of the number of project vfolders.""" max_vfolder_count: Int - """Added since 24.03.1""" + """Added since 24.03.1. Limitation of the quota size of project vfolders.""" max_quota_scope_size: BigInt } @@ -1157,10 +1158,10 @@ type ModifyProjectResourcePolicy { } input ModifyProjectResourcePolicyInput { - """Added since 24.03.1""" + """Added since 24.03.1. Limitation of the number of project vfolders.""" max_vfolder_count: Int - """Added since 24.03.1""" + """Added since 24.03.1. Limitation of the quota size of project vfolders.""" max_quota_scope_size: BigInt }