Skip to content

Commit

Permalink
update latest graphql shcmea
Browse files Browse the repository at this point in the history
  • Loading branch information
yomybaby committed Nov 2, 2023
1 parent 1adebcf commit 323ba98
Showing 1 changed file with 25 additions and 24 deletions.
49 changes: 25 additions & 24 deletions react/data/schema.graphql
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# PR #1677 https://github.com/lablup/backend.ai/pull/1677
# PR #1680 27ab15e5297862f0bf2717b6b0b98d99eb609e26

schema {
query: Queries
mutation: Mutations
Expand Down Expand Up @@ -407,35 +408,35 @@ 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 {
id: ID!
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 {
id: ID!
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 {
Expand Down Expand Up @@ -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 {
Expand All @@ -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 {
Expand All @@ -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
}

Expand All @@ -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
}

Expand All @@ -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
}

Expand All @@ -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
}

Expand Down

0 comments on commit 323ba98

Please sign in to comment.