diff --git a/openapi/components/schemas/AccessMethod.yaml b/openapi/components/schemas/AccessMethod.yaml index e559df19..36c727b5 100644 --- a/openapi/components/schemas/AccessMethod.yaml +++ b/openapi/components/schemas/AccessMethod.yaml @@ -29,6 +29,12 @@ properties: description: >- Name of the region in the cloud service provider that the object belongs to. example: us-east-1 + storage: + type: string + description: >- + Type of storage of file in the cloud. + Cold defines that this file is not accessible as its in offline/archival storage. + example: cold authorizations: allOf: - $ref: './Authorizations.yaml' diff --git a/preview/feature/issue-395-cold-storage/openapi.json b/preview/feature/issue-395-cold-storage/openapi.json index f0125228..60e0a587 100644 --- a/preview/feature/issue-395-cold-storage/openapi.json +++ b/preview/feature/issue-395-cold-storage/openapi.json @@ -824,6 +824,11 @@ "description": "Name of the region in the cloud service provider that the object belongs to.", "example": "us-east-1" }, + "storage": { + "type": "string", + "description": "Type of storage of file in the cloud. Cold defines that this file is not accessible as its in offline/archival storage.", + "example": "cold" + }, "authorizations": { "allOf": [ { diff --git a/preview/feature/issue-395-cold-storage/openapi.yaml b/preview/feature/issue-395-cold-storage/openapi.yaml index 82338b09..31c461f0 100644 --- a/preview/feature/issue-395-cold-storage/openapi.yaml +++ b/preview/feature/issue-395-cold-storage/openapi.yaml @@ -1586,6 +1586,12 @@ components: Name of the region in the cloud service provider that the object belongs to. example: us-east-1 + storage: + type: string + description: >- + Type of storage of file in the cloud. Cold defines that this file is + not accessible as its in offline/archival storage. + example: cold authorizations: allOf: - $ref: '#/components/schemas/Authorizations'