diff --git a/client/src/api/schema/schema.ts b/client/src/api/schema/schema.ts index 3a7c79e4de31..670a171c18f6 100644 --- a/client/src/api/schema/schema.ts +++ b/client/src/api/schema/schema.ts @@ -14666,7 +14666,7 @@ export interface components { * Type * @enum {string} */ - type: "aws_s3" | "azure_blob" | "boto3" | "disk" | "generic_s3" | "onedata"; + type: "aws_s3" | "azure_blob" | "boto3" | "disk" | "generic_s3" | "onedata" | "irods"; /** Variables */ variables?: | ( @@ -17470,7 +17470,7 @@ export interface components { * Type * @enum {string} */ - type: "aws_s3" | "azure_blob" | "boto3" | "disk" | "generic_s3" | "onedata"; + type: "aws_s3" | "azure_blob" | "boto3" | "disk" | "generic_s3" | "onedata" | "irods"; /** * Uuid * Format: uuid4 diff --git a/client/src/components/ObjectStore/ObjectStoreTypeSpan.vue b/client/src/components/ObjectStore/ObjectStoreTypeSpan.vue index 84b946515ac4..3bc6b0a7b88f 100644 --- a/client/src/components/ObjectStore/ObjectStoreTypeSpan.vue +++ b/client/src/components/ObjectStore/ObjectStoreTypeSpan.vue @@ -12,6 +12,7 @@ const MESSAGES = { generic_s3: "This is a storage location based on the Amazon Simple Storage Service (S3) interface, but likely not stored by Amazon. The AWS interface has become an industry standard and many storage vendors support it and use it to expose object based storage.", onedata: "This is a storage location based on the Onedata system.", + irods: "This is a storage location based on the iRODS system.", }; interface Props {