@coscine/api-client 3.21.0 → 3.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +968 -732
- package/dist/types/Coscine.Api/@coscine/api/admin-api.d.ts +174 -4
- package/dist/types/Coscine.Api/@coscine/api/application-profile-api.d.ts +41 -0
- package/dist/types/Coscine.Api/@coscine/api/blob-api.d.ts +65 -0
- package/dist/types/Coscine.Api/@coscine/api/data-hamster-report-api.d.ts +17 -0
- package/dist/types/Coscine.Api/@coscine/api/discipline-api.d.ts +21 -0
- package/dist/types/Coscine.Api/@coscine/api/handle-api.d.ts +23 -0
- package/dist/types/Coscine.Api/@coscine/api/language-api.d.ts +21 -0
- package/dist/types/Coscine.Api/@coscine/api/license-api.d.ts +21 -0
- package/dist/types/Coscine.Api/@coscine/api/maintenance-api.d.ts +8 -0
- package/dist/types/Coscine.Api/@coscine/api/notification-api.d.ts +21 -0
- package/dist/types/Coscine.Api/@coscine/api/organization-api.d.ts +27 -0
- package/dist/types/Coscine.Api/@coscine/api/pid-api.d.ts +38 -0
- package/dist/types/Coscine.Api/@coscine/api/project-api.d.ts +44 -0
- package/dist/types/Coscine.Api/@coscine/api/project-invitation-api.d.ts +46 -0
- package/dist/types/Coscine.Api/@coscine/api/project-member-api.d.ts +55 -0
- package/dist/types/Coscine.Api/@coscine/api/project-publication-request-api.d.ts +28 -0
- package/dist/types/Coscine.Api/@coscine/api/project-quota-api.d.ts +41 -0
- package/dist/types/Coscine.Api/@coscine/api/project-resource-api.d.ts +55 -0
- package/dist/types/Coscine.Api/@coscine/api/project-resource-quota-api.d.ts +26 -0
- package/dist/types/Coscine.Api/@coscine/api/project-resource-type-api.d.ts +19 -0
- package/dist/types/Coscine.Api/@coscine/api/project-sub-projects-api.d.ts +27 -0
- package/dist/types/Coscine.Api/@coscine/api/provenance-api.d.ts +39 -0
- package/dist/types/Coscine.Api/@coscine/api/publication-advisory-service-api.d.ts +149 -0
- package/dist/types/Coscine.Api/@coscine/api/report-api.d.ts +14 -0
- package/dist/types/Coscine.Api/@coscine/api/resource-api.d.ts +12 -0
- package/dist/types/Coscine.Api/@coscine/api/resource-type-api.d.ts +13 -0
- package/dist/types/Coscine.Api/@coscine/api/resource-type-git-lab-api.d.ts +32 -0
- package/dist/types/Coscine.Api/@coscine/api/role-api.d.ts +21 -0
- package/dist/types/Coscine.Api/@coscine/api/search-api.d.ts +24 -0
- package/dist/types/Coscine.Api/@coscine/api/self-api-token-api.d.ts +31 -0
- package/dist/types/Coscine.Api/@coscine/api/self-api.d.ts +65 -1
- package/dist/types/Coscine.Api/@coscine/api/self-session-api.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/api/system-status-api.d.ts +69 -38
- package/dist/types/Coscine.Api/@coscine/api/title-api.d.ts +21 -0
- package/dist/types/Coscine.Api/@coscine/api/tos-api.d.ts +8 -0
- package/dist/types/Coscine.Api/@coscine/api/tree-api.d.ts +117 -0
- package/dist/types/Coscine.Api/@coscine/api/user-api.d.ts +14 -0
- package/dist/types/Coscine.Api/@coscine/api/user-notification-opt-out-api.d.ts +31 -0
- package/dist/types/Coscine.Api/@coscine/api/visibility-api.d.ts +21 -0
- package/dist/types/Coscine.Api/@coscine/api/vocabulary-api.d.ts +42 -0
- package/dist/types/Coscine.Api/@coscine/model/accepted-language.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/activity-log-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/activity-log-dto.d.ts +37 -0
- package/dist/types/Coscine.Api/@coscine/model/api-token-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/api-token-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/api-token-dto.d.ts +17 -0
- package/dist/types/Coscine.Api/@coscine/model/api-token-for-creation-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/application-profile-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/application-profile-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/application-profile-dto.d.ts +13 -0
- package/dist/types/Coscine.Api/@coscine/model/application-profile-for-creation-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/application-profile-for-creation-dto.d.ts +11 -0
- package/dist/types/Coscine.Api/@coscine/model/application-profile-for-resource-creation-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/application-profile-minimal-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/coscine-http-method.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/coscine-role-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/create-datasource-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/create-datasource-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/data-hamster-kpi-dto-ienumerable-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/data-hamster-kpi-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/data-hamster-kpi-dto.d.ts +35 -0
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-s3-options-dto.d.ts +19 -0
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-s3-resource-type-options-for-manipulation-dto.d.ts +17 -0
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-s3-worm-options-dto.d.ts +19 -0
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-s3-worm-resource-type-options-for-manipulation-dto.d.ts +17 -0
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-web-options-dto.d.ts +9 -0
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-web-resource-type-options-for-manipulation-dto.d.ts +17 -0
- package/dist/types/Coscine.Api/@coscine/model/deployed-graph-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/deployed-graph-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/discipline-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/discipline-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/discipline-dto.d.ts +10 -0
- package/dist/types/Coscine.Api/@coscine/model/discipline-for-project-manipulation-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/discipline-for-resource-manipulation-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/discipline-for-user-manipulation-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/ds-nrw-replication-group-dto.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/ds-nrw-replication-group.d.ts +21 -0
- package/dist/types/Coscine.Api/@coscine/model/extracted-metadata-tree-for-creation-dto.d.ts +16 -0
- package/dist/types/Coscine.Api/@coscine/model/extracted-metadata-tree-for-update-dto.d.ts +18 -0
- package/dist/types/Coscine.Api/@coscine/model/file-action-dto.d.ts +9 -0
- package/dist/types/Coscine.Api/@coscine/model/file-action-http-method.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/file-actions-dto.d.ts +7 -0
- package/dist/types/Coscine.Api/@coscine/model/file-system-storage-options-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/file-tree-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/file-tree-dto.d.ts +28 -0
- package/dist/types/Coscine.Api/@coscine/model/fixed-value-for-resource-manipulation-dto.d.ts +10 -0
- package/dist/types/Coscine.Api/@coscine/model/git-lab-options-dto.d.ts +10 -0
- package/dist/types/Coscine.Api/@coscine/model/gitlab-branch-dto-ienumerable-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/gitlab-branch-dto.d.ts +16 -0
- package/dist/types/Coscine.Api/@coscine/model/gitlab-project-dto-ienumerable-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/gitlab-project-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/gitlab-project-dto.d.ts +28 -0
- package/dist/types/Coscine.Api/@coscine/model/gitlab-resource-type-options-for-creation-dto.d.ts +12 -0
- package/dist/types/Coscine.Api/@coscine/model/gitlab-resource-type-options-for-update-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/handle-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/handle-dto.d.ts +15 -0
- package/dist/types/Coscine.Api/@coscine/model/handle-for-update-dto.d.ts +10 -0
- package/dist/types/Coscine.Api/@coscine/model/handle-value-dto.d.ts +50 -0
- package/dist/types/Coscine.Api/@coscine/model/handle-value-for-update-dto.d.ts +8 -0
- package/dist/types/Coscine.Api/@coscine/model/hash-parameters-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/identity-provider-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/identity-providers.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/index.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/language-dto-ienumerable-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/language-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/language-dto.d.ts +8 -0
- package/dist/types/Coscine.Api/@coscine/model/language-for-user-manipulation-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/license-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/license-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/license-dto.d.ts +8 -0
- package/dist/types/Coscine.Api/@coscine/model/license-for-resource-manipulation-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/lifecycle-options-for-manipulation-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/maintenance-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/maintenance-dto.d.ts +14 -0
- package/dist/types/Coscine.Api/@coscine/model/message-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/message-dto.d.ts +22 -0
- package/dist/types/Coscine.Api/@coscine/model/message-type.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/metadata-tree-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/metadata-tree-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/metadata-tree-dto.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/metadata-tree-extracted-dto.d.ts +18 -0
- package/dist/types/Coscine.Api/@coscine/model/metadata-tree-for-creation-dto.d.ts +9 -0
- package/dist/types/Coscine.Api/@coscine/model/metadata-tree-for-deletion-dto.d.ts +8 -0
- package/dist/types/Coscine.Api/@coscine/model/metadata-tree-for-update-dto.d.ts +9 -0
- package/dist/types/Coscine.Api/@coscine/model/metadata-update-admin-parameters.d.ts +7 -0
- package/dist/types/Coscine.Api/@coscine/model/notification-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/notification-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/notification-dto.d.ts +8 -0
- package/dist/types/Coscine.Api/@coscine/model/organization-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/organization-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/organization-dto.d.ts +13 -0
- package/dist/types/Coscine.Api/@coscine/model/organization-for-project-manipulation-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/pagination.d.ts +14 -0
- package/dist/types/Coscine.Api/@coscine/model/pid-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/pid-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/pid-dto.d.ts +15 -0
- package/dist/types/Coscine.Api/@coscine/model/pid-request-dto.d.ts +10 -0
- package/dist/types/Coscine.Api/@coscine/model/pid-type.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/project-admin-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/project-admin-dto.d.ts +57 -0
- package/dist/types/Coscine.Api/@coscine/model/project-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/project-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/project-dto.d.ts +47 -0
- package/dist/types/Coscine.Api/@coscine/model/project-for-creation-dto.d.ts +31 -0
- package/dist/types/Coscine.Api/@coscine/model/project-for-update-dto.d.ts +29 -0
- package/dist/types/Coscine.Api/@coscine/model/project-invitation-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/project-invitation-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/project-invitation-dto.d.ts +23 -0
- package/dist/types/Coscine.Api/@coscine/model/project-invitation-for-project-manipulation-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/project-invitation-resolve-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/project-minimal-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/project-organization-dto.d.ts +15 -0
- package/dist/types/Coscine.Api/@coscine/model/project-publication-request-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/project-publication-request-dto.d.ts +22 -0
- package/dist/types/Coscine.Api/@coscine/model/project-quota-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/project-quota-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/project-quota-dto.d.ts +31 -0
- package/dist/types/Coscine.Api/@coscine/model/project-quota-for-update-dto.d.ts +12 -0
- package/dist/types/Coscine.Api/@coscine/model/project-resource-minimal-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/project-role-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/project-role-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/project-role-dto.d.ts +19 -0
- package/dist/types/Coscine.Api/@coscine/model/project-role-for-project-creation-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/project-role-for-project-manipulation-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/project-role-minimal-dto.d.ts +8 -0
- package/dist/types/Coscine.Api/@coscine/model/provenance-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/provenance-dto.d.ts +19 -0
- package/dist/types/Coscine.Api/@coscine/model/provenance-for-update-dto.d.ts +19 -0
- package/dist/types/Coscine.Api/@coscine/model/provenance-parameters-dto.d.ts +17 -0
- package/dist/types/Coscine.Api/@coscine/model/public-user-dto-ienumerable-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/public-user-dto.d.ts +17 -0
- package/dist/types/Coscine.Api/@coscine/model/publication-advisory-service-dto-paged-response.d.ts +50 -0
- package/dist/types/Coscine.Api/@coscine/model/publication-advisory-service-dto.d.ts +17 -3
- package/dist/types/Coscine.Api/@coscine/model/publication-request-for-creation-dto.d.ts +8 -0
- package/dist/types/Coscine.Api/@coscine/model/quota-dto.d.ts +9 -0
- package/dist/types/Coscine.Api/@coscine/model/quota-for-manipulation-dto.d.ts +9 -0
- package/dist/types/Coscine.Api/@coscine/model/quota-unit.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/rdf-definition-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/rdf-definition-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/rdf-definition-for-manipulation-dto.d.ts +9 -0
- package/dist/types/Coscine.Api/@coscine/model/rdf-format.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/rdf-patch-document-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/rdf-patch-operation-dto.d.ts +12 -0
- package/dist/types/Coscine.Api/@coscine/model/rdf-patch-operation-type.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/rds-options-dto.d.ts +9 -0
- package/dist/types/Coscine.Api/@coscine/model/rds-resource-type-options-for-manipulation-dto.d.ts +7 -0
- package/dist/types/Coscine.Api/@coscine/model/rds-s3-options-dto.d.ts +19 -0
- package/dist/types/Coscine.Api/@coscine/model/rds-s3-resource-type-options-for-manipulation-dto.d.ts +7 -0
- package/dist/types/Coscine.Api/@coscine/model/rds-s3-worm-options-dto.d.ts +19 -0
- package/dist/types/Coscine.Api/@coscine/model/rds-s3-worm-resource-type-options-for-manipulation-dto.d.ts +7 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-admin-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-admin-dto.d.ts +66 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-content-page-columns-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-content-page-dto.d.ts +14 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-content-page-entries-view-dto.d.ts +7 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-content-page-metadata-view-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-creation-page-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-dto.d.ts +57 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-for-creation-dto.d.ts +40 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-for-update-dto.d.ts +37 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-minimal-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-quota-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-quota-dto.d.ts +19 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-type-dto.d.ts +13 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-type-information-dto-ienumerable-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-type-information-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-type-information-dto.d.ts +51 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-type-minimal-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-type-options-dto.d.ts +44 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-type-options-for-creation-dto.d.ts +39 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-type-options-for-update-dto.d.ts +39 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-type-status.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/role-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/role-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/role-dto.d.ts +8 -0
- package/dist/types/Coscine.Api/@coscine/model/role-minimal-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/search-category-type.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/search-category.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/search-result-dto-paged-search-response.d.ts +35 -0
- package/dist/types/Coscine.Api/@coscine/model/search-result-dto.d.ts +11 -0
- package/dist/types/Coscine.Api/@coscine/model/storage-data-hamster-kpi-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/storage-data-hamster-kpi-dto.d.ts +15 -0
- package/dist/types/Coscine.Api/@coscine/model/terms-of-service-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/terms-of-service-dto.d.ts +8 -0
- package/dist/types/Coscine.Api/@coscine/model/title-dto-ienumerable-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/title-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/title-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/title-for-user-manipulation-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/tree-data-type.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/user-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/user-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/user-dto.d.ts +35 -3
- package/dist/types/Coscine.Api/@coscine/model/user-email-dto.d.ts +8 -0
- package/dist/types/Coscine.Api/@coscine/model/user-for-update-dto.d.ts +22 -0
- package/dist/types/Coscine.Api/@coscine/model/user-merge-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/user-merge-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/user-minimal-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/user-notification-for-creation-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/user-notification-opt-out-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/user-notification-opt-out-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/user-notification-opt-out-dto.d.ts +8 -0
- package/dist/types/Coscine.Api/@coscine/model/user-organization-dto.d.ts +10 -0
- package/dist/types/Coscine.Api/@coscine/model/user-terms-of-service-accept-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/variant-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/visibility-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/visibility-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/visibility-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/visibility-for-project-manipulation-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/visibility-for-resource-manipulation-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/vocabulary-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/vocabulary-dto.d.ts +10 -0
- package/dist/types/Coscine.Api/@coscine/model/vocabulary-instance-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/vocabulary-instance-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/vocabulary-instance-dto.d.ts +14 -0
- package/dist/types/Coscine.Api/api.d.ts +1 -0
- package/dist/types/Coscine.Api/base.d.ts +24 -0
- package/dist/types/Coscine.Api/common.d.ts +37 -0
- package/dist/types/Coscine.Api/configuration.d.ts +41 -0
- package/dist/types/apis.d.ts +7 -0
- package/dist/types/index.d.ts +14 -0
- package/package.json +1 -1
|
@@ -12,27 +12,44 @@
|
|
|
12
12
|
import type { TitleDto } from './title-dto';
|
|
13
13
|
/**
|
|
14
14
|
* Represents a public user data transfer object (DTO).
|
|
15
|
+
* @export
|
|
16
|
+
* @interface PublicUserDto
|
|
15
17
|
*/
|
|
16
18
|
export interface PublicUserDto {
|
|
17
19
|
/**
|
|
18
20
|
* Gets the unique identifier of the user.
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof PublicUserDto
|
|
19
23
|
*/
|
|
20
24
|
'id': string;
|
|
21
25
|
/**
|
|
22
26
|
* Gets the display name of the user.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof PublicUserDto
|
|
23
29
|
*/
|
|
24
30
|
'displayName': string;
|
|
25
31
|
/**
|
|
26
32
|
* Gets the given name of the user.
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof PublicUserDto
|
|
27
35
|
*/
|
|
28
36
|
'givenName'?: string | null;
|
|
29
37
|
/**
|
|
30
38
|
* Gets the family name of the user.
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof PublicUserDto
|
|
31
41
|
*/
|
|
32
42
|
'familyName'?: string | null;
|
|
33
43
|
/**
|
|
34
44
|
* Gets the email address of the user.
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof PublicUserDto
|
|
35
47
|
*/
|
|
36
48
|
'email'?: string | null;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {TitleDto}
|
|
52
|
+
* @memberof PublicUserDto
|
|
53
|
+
*/
|
|
37
54
|
'title'?: TitleDto;
|
|
38
55
|
}
|
package/dist/types/Coscine.Api/@coscine/model/publication-advisory-service-dto-paged-response.d.ts
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Coscine Web API
|
|
3
|
+
* Coscine (short for <b>CO</b>llaborative <b>SC</b>ientific <b>IN</b>tegration <b>E</b>nvironment) is the research data management platform for your research project.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2.0
|
|
6
|
+
* Contact: servicedesk@rwth-aachen.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { Pagination } from './pagination';
|
|
13
|
+
import type { PublicationAdvisoryServiceDto } from './publication-advisory-service-dto';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface PublicationAdvisoryServiceDtoPagedResponse
|
|
18
|
+
*/
|
|
19
|
+
export interface PublicationAdvisoryServiceDtoPagedResponse {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {Array<PublicationAdvisoryServiceDto>}
|
|
23
|
+
* @memberof PublicationAdvisoryServiceDtoPagedResponse
|
|
24
|
+
*/
|
|
25
|
+
'data'?: Array<PublicationAdvisoryServiceDto> | null;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {boolean}
|
|
29
|
+
* @memberof PublicationAdvisoryServiceDtoPagedResponse
|
|
30
|
+
*/
|
|
31
|
+
'isSuccess'?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {number}
|
|
35
|
+
* @memberof PublicationAdvisoryServiceDtoPagedResponse
|
|
36
|
+
*/
|
|
37
|
+
'statusCode'?: number | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof PublicationAdvisoryServiceDtoPagedResponse
|
|
42
|
+
*/
|
|
43
|
+
'traceId'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Pagination}
|
|
47
|
+
* @memberof PublicationAdvisoryServiceDtoPagedResponse
|
|
48
|
+
*/
|
|
49
|
+
'pagination'?: Pagination;
|
|
50
|
+
}
|
|
@@ -11,18 +11,32 @@
|
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
13
|
* Data transfer object (DTO) representing the publication advisory service of an organization.
|
|
14
|
+
* @export
|
|
15
|
+
* @interface PublicationAdvisoryServiceDto
|
|
14
16
|
*/
|
|
15
17
|
export interface PublicationAdvisoryServiceDto {
|
|
16
18
|
/**
|
|
17
|
-
*
|
|
19
|
+
* Gets the data publication service\'s display name.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof PublicationAdvisoryServiceDto
|
|
18
22
|
*/
|
|
19
23
|
'displayName': string;
|
|
20
24
|
/**
|
|
21
|
-
*
|
|
25
|
+
* Gets the data publication service\'s email address.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof PublicationAdvisoryServiceDto
|
|
22
28
|
*/
|
|
23
29
|
'email': string;
|
|
24
30
|
/**
|
|
25
|
-
*
|
|
31
|
+
* Gets the data publication service\'s description.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof PublicationAdvisoryServiceDto
|
|
26
34
|
*/
|
|
27
35
|
'description'?: string | null;
|
|
36
|
+
/**
|
|
37
|
+
* Gets the ROR of the organization that provides this publication service.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof PublicationAdvisoryServiceDto
|
|
40
|
+
*/
|
|
41
|
+
'organizationRor'?: string | null;
|
|
28
42
|
}
|
|
@@ -11,18 +11,26 @@
|
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
13
|
* Data transfer object (DTO) representing the creation of a publication request.
|
|
14
|
+
* @export
|
|
15
|
+
* @interface PublicationRequestForCreationDto
|
|
14
16
|
*/
|
|
15
17
|
export interface PublicationRequestForCreationDto {
|
|
16
18
|
/**
|
|
17
19
|
* The data publication service\'s ror id.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof PublicationRequestForCreationDto
|
|
18
22
|
*/
|
|
19
23
|
'publicationServiceRorId': string;
|
|
20
24
|
/**
|
|
21
25
|
* The resource guids.
|
|
26
|
+
* @type {Array<string>}
|
|
27
|
+
* @memberof PublicationRequestForCreationDto
|
|
22
28
|
*/
|
|
23
29
|
'resourceIds': Array<string>;
|
|
24
30
|
/**
|
|
25
31
|
* A message of the requester.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof PublicationRequestForCreationDto
|
|
26
34
|
*/
|
|
27
35
|
'message'?: string | null;
|
|
28
36
|
}
|
|
@@ -12,11 +12,20 @@
|
|
|
12
12
|
import type { QuotaUnit } from './quota-unit';
|
|
13
13
|
/**
|
|
14
14
|
* Represents a Data Transfer Object (DTO) for quota values.
|
|
15
|
+
* @export
|
|
16
|
+
* @interface QuotaDto
|
|
15
17
|
*/
|
|
16
18
|
export interface QuotaDto {
|
|
17
19
|
/**
|
|
18
20
|
* The value of the quota.
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof QuotaDto
|
|
19
23
|
*/
|
|
20
24
|
'value': number;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {QuotaUnit}
|
|
28
|
+
* @memberof QuotaDto
|
|
29
|
+
*/
|
|
21
30
|
'unit': QuotaUnit;
|
|
22
31
|
}
|
|
@@ -12,11 +12,20 @@
|
|
|
12
12
|
import type { QuotaUnit } from './quota-unit';
|
|
13
13
|
/**
|
|
14
14
|
* Represents a data transfer object (DTO) used for manipulating quota values.
|
|
15
|
+
* @export
|
|
16
|
+
* @interface QuotaForManipulationDto
|
|
15
17
|
*/
|
|
16
18
|
export interface QuotaForManipulationDto {
|
|
17
19
|
/**
|
|
18
20
|
* The numerical value of the quota. Must be a positive System.Int64.
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof QuotaForManipulationDto
|
|
19
23
|
*/
|
|
20
24
|
'value': number;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {QuotaUnit}
|
|
28
|
+
* @memberof QuotaForManipulationDto
|
|
29
|
+
*/
|
|
21
30
|
'unit': QuotaUnit;
|
|
22
31
|
}
|
|
@@ -10,9 +10,34 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { RdfDefinitionDto } from './rdf-definition-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface RdfDefinitionDtoResponse
|
|
17
|
+
*/
|
|
13
18
|
export interface RdfDefinitionDtoResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {RdfDefinitionDto}
|
|
22
|
+
* @memberof RdfDefinitionDtoResponse
|
|
23
|
+
*/
|
|
14
24
|
'data'?: RdfDefinitionDto;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {boolean}
|
|
28
|
+
* @memberof RdfDefinitionDtoResponse
|
|
29
|
+
*/
|
|
15
30
|
'isSuccess'?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof RdfDefinitionDtoResponse
|
|
35
|
+
*/
|
|
16
36
|
'statusCode'?: number | null;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof RdfDefinitionDtoResponse
|
|
41
|
+
*/
|
|
17
42
|
'traceId'?: string | null;
|
|
18
43
|
}
|
|
@@ -11,14 +11,20 @@
|
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
13
|
* Represents a Data Transfer Object (DTO) for RDF (Resource Description Framework) definition details.
|
|
14
|
+
* @export
|
|
15
|
+
* @interface RdfDefinitionDto
|
|
14
16
|
*/
|
|
15
17
|
export interface RdfDefinitionDto {
|
|
16
18
|
/**
|
|
17
19
|
* The content of the RDF definition.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof RdfDefinitionDto
|
|
18
22
|
*/
|
|
19
23
|
'content'?: string | null;
|
|
20
24
|
/**
|
|
21
25
|
* The type of the RDF definition.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof RdfDefinitionDto
|
|
22
28
|
*/
|
|
23
29
|
'type'?: string | null;
|
|
24
30
|
}
|
|
@@ -12,11 +12,20 @@
|
|
|
12
12
|
import type { RdfFormat } from './rdf-format';
|
|
13
13
|
/**
|
|
14
14
|
* Represents the data transfer object (DTO) used for manipulating RDF definitions.
|
|
15
|
+
* @export
|
|
16
|
+
* @interface RdfDefinitionForManipulationDto
|
|
15
17
|
*/
|
|
16
18
|
export interface RdfDefinitionForManipulationDto {
|
|
17
19
|
/**
|
|
18
20
|
* The content of the RDF definition.
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof RdfDefinitionForManipulationDto
|
|
19
23
|
*/
|
|
20
24
|
'content': string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {RdfFormat}
|
|
28
|
+
* @memberof RdfDefinitionForManipulationDto
|
|
29
|
+
*/
|
|
21
30
|
'type': RdfFormat;
|
|
22
31
|
}
|
|
@@ -12,10 +12,14 @@
|
|
|
12
12
|
import type { RdfPatchOperationDto } from './rdf-patch-operation-dto';
|
|
13
13
|
/**
|
|
14
14
|
* Represents an RDF Patch document containing a series of operations.
|
|
15
|
+
* @export
|
|
16
|
+
* @interface RdfPatchDocumentDto
|
|
15
17
|
*/
|
|
16
18
|
export interface RdfPatchDocumentDto {
|
|
17
19
|
/**
|
|
18
20
|
* The list of operations in the RDF Patch document.
|
|
21
|
+
* @type {Array<RdfPatchOperationDto>}
|
|
22
|
+
* @memberof RdfPatchDocumentDto
|
|
19
23
|
*/
|
|
20
24
|
'operations'?: Array<RdfPatchOperationDto>;
|
|
21
25
|
}
|
|
@@ -13,8 +13,20 @@ import type { RdfDefinitionForManipulationDto } from './rdf-definition-for-manip
|
|
|
13
13
|
import type { RdfPatchOperationType } from './rdf-patch-operation-type';
|
|
14
14
|
/**
|
|
15
15
|
* Represents a single operation in an RDF Patch document.
|
|
16
|
+
* @export
|
|
17
|
+
* @interface RdfPatchOperationDto
|
|
16
18
|
*/
|
|
17
19
|
export interface RdfPatchOperationDto {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {RdfPatchOperationType}
|
|
23
|
+
* @memberof RdfPatchOperationDto
|
|
24
|
+
*/
|
|
18
25
|
'operationType'?: RdfPatchOperationType;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {RdfDefinitionForManipulationDto}
|
|
29
|
+
* @memberof RdfPatchOperationDto
|
|
30
|
+
*/
|
|
19
31
|
'changes'?: RdfDefinitionForManipulationDto;
|
|
20
32
|
}
|
|
@@ -12,11 +12,20 @@
|
|
|
12
12
|
import type { QuotaDto } from './quota-dto';
|
|
13
13
|
/**
|
|
14
14
|
* Represents the data transfer object (DTO) for RDS options.
|
|
15
|
+
* @export
|
|
16
|
+
* @interface RdsOptionsDto
|
|
15
17
|
*/
|
|
16
18
|
export interface RdsOptionsDto {
|
|
17
19
|
/**
|
|
18
20
|
* The name of the bucket associated with RDS.
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof RdsOptionsDto
|
|
19
23
|
*/
|
|
20
24
|
'bucketName': string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {QuotaDto}
|
|
28
|
+
* @memberof RdsOptionsDto
|
|
29
|
+
*/
|
|
21
30
|
'size'?: QuotaDto;
|
|
22
31
|
}
|
package/dist/types/Coscine.Api/@coscine/model/rds-resource-type-options-for-manipulation-dto.d.ts
CHANGED
|
@@ -12,7 +12,14 @@
|
|
|
12
12
|
import type { QuotaForManipulationDto } from './quota-for-manipulation-dto';
|
|
13
13
|
/**
|
|
14
14
|
* Represents the data transfer object (DTO) for manipulating RDS Web resource type options.
|
|
15
|
+
* @export
|
|
16
|
+
* @interface RdsResourceTypeOptionsForManipulationDto
|
|
15
17
|
*/
|
|
16
18
|
export interface RdsResourceTypeOptionsForManipulationDto {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {QuotaForManipulationDto}
|
|
22
|
+
* @memberof RdsResourceTypeOptionsForManipulationDto
|
|
23
|
+
*/
|
|
17
24
|
'quota': QuotaForManipulationDto;
|
|
18
25
|
}
|
|
@@ -12,31 +12,50 @@
|
|
|
12
12
|
import type { QuotaDto } from './quota-dto';
|
|
13
13
|
/**
|
|
14
14
|
* Represents the data transfer object (DTO) for RDS S3 options.
|
|
15
|
+
* @export
|
|
16
|
+
* @interface RdsS3OptionsDto
|
|
15
17
|
*/
|
|
16
18
|
export interface RdsS3OptionsDto {
|
|
17
19
|
/**
|
|
18
20
|
* The name of the bucket associated with RDS S3.
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof RdsS3OptionsDto
|
|
19
23
|
*/
|
|
20
24
|
'bucketName': string;
|
|
21
25
|
/**
|
|
22
26
|
* The access key for reading from the RDS S3 bucket.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof RdsS3OptionsDto
|
|
23
29
|
*/
|
|
24
30
|
'accessKeyRead': string;
|
|
25
31
|
/**
|
|
26
32
|
* The secret key for reading from the RDS S3 bucket.
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof RdsS3OptionsDto
|
|
27
35
|
*/
|
|
28
36
|
'secretKeyRead': string;
|
|
29
37
|
/**
|
|
30
38
|
* The access key for writing to the RDS S3 bucket.
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof RdsS3OptionsDto
|
|
31
41
|
*/
|
|
32
42
|
'accessKeyWrite': string;
|
|
33
43
|
/**
|
|
34
44
|
* The secret key for writing to the RDS S3 bucket.
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof RdsS3OptionsDto
|
|
35
47
|
*/
|
|
36
48
|
'secretKeyWrite': string;
|
|
37
49
|
/**
|
|
38
50
|
* The endpoint for the RDS S3 bucket.
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof RdsS3OptionsDto
|
|
39
53
|
*/
|
|
40
54
|
'endpoint': string;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {QuotaDto}
|
|
58
|
+
* @memberof RdsS3OptionsDto
|
|
59
|
+
*/
|
|
41
60
|
'size'?: QuotaDto;
|
|
42
61
|
}
|
package/dist/types/Coscine.Api/@coscine/model/rds-s3-resource-type-options-for-manipulation-dto.d.ts
CHANGED
|
@@ -12,7 +12,14 @@
|
|
|
12
12
|
import type { QuotaForManipulationDto } from './quota-for-manipulation-dto';
|
|
13
13
|
/**
|
|
14
14
|
* Represents the data transfer object (DTO) for manipulating RDS S3 resource type options.
|
|
15
|
+
* @export
|
|
16
|
+
* @interface RdsS3ResourceTypeOptionsForManipulationDto
|
|
15
17
|
*/
|
|
16
18
|
export interface RdsS3ResourceTypeOptionsForManipulationDto {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {QuotaForManipulationDto}
|
|
22
|
+
* @memberof RdsS3ResourceTypeOptionsForManipulationDto
|
|
23
|
+
*/
|
|
17
24
|
'quota': QuotaForManipulationDto;
|
|
18
25
|
}
|
|
@@ -12,31 +12,50 @@
|
|
|
12
12
|
import type { QuotaDto } from './quota-dto';
|
|
13
13
|
/**
|
|
14
14
|
* Represents the data transfer object (DTO) for RDS S3 WORM options.
|
|
15
|
+
* @export
|
|
16
|
+
* @interface RdsS3WormOptionsDto
|
|
15
17
|
*/
|
|
16
18
|
export interface RdsS3WormOptionsDto {
|
|
17
19
|
/**
|
|
18
20
|
* The name of the bucket associated with RDS S3 WORM.
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof RdsS3WormOptionsDto
|
|
19
23
|
*/
|
|
20
24
|
'bucketName': string;
|
|
21
25
|
/**
|
|
22
26
|
* The access key for reading from the RDS S3 WORM bucket.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof RdsS3WormOptionsDto
|
|
23
29
|
*/
|
|
24
30
|
'accessKeyRead': string;
|
|
25
31
|
/**
|
|
26
32
|
* The secret key for reading from the RDS S3 WORM bucket.
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof RdsS3WormOptionsDto
|
|
27
35
|
*/
|
|
28
36
|
'secretKeyRead': string;
|
|
29
37
|
/**
|
|
30
38
|
* The access key for writing to the RDS S3 WORM bucket.
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof RdsS3WormOptionsDto
|
|
31
41
|
*/
|
|
32
42
|
'accessKeyWrite': string;
|
|
33
43
|
/**
|
|
34
44
|
* The secret key for writing to the RDS S3 WORM bucket.
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof RdsS3WormOptionsDto
|
|
35
47
|
*/
|
|
36
48
|
'secretKeyWrite': string;
|
|
37
49
|
/**
|
|
38
50
|
* The endpoint for the RDS S3 WORM bucket.
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof RdsS3WormOptionsDto
|
|
39
53
|
*/
|
|
40
54
|
'endpoint': string;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {QuotaDto}
|
|
58
|
+
* @memberof RdsS3WormOptionsDto
|
|
59
|
+
*/
|
|
41
60
|
'size'?: QuotaDto;
|
|
42
61
|
}
|
|
@@ -12,7 +12,14 @@
|
|
|
12
12
|
import type { QuotaForManipulationDto } from './quota-for-manipulation-dto';
|
|
13
13
|
/**
|
|
14
14
|
* Represents the data transfer object (DTO) for manipulating RDS S3 WORM resource type options.
|
|
15
|
+
* @export
|
|
16
|
+
* @interface RdsS3WormResourceTypeOptionsForManipulationDto
|
|
15
17
|
*/
|
|
16
18
|
export interface RdsS3WormResourceTypeOptionsForManipulationDto {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {QuotaForManipulationDto}
|
|
22
|
+
* @memberof RdsS3WormResourceTypeOptionsForManipulationDto
|
|
23
|
+
*/
|
|
17
24
|
'quota': QuotaForManipulationDto;
|
|
18
25
|
}
|
|
@@ -11,10 +11,40 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import type { Pagination } from './pagination';
|
|
13
13
|
import type { ResourceAdminDto } from './resource-admin-dto';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface ResourceAdminDtoPagedResponse
|
|
18
|
+
*/
|
|
14
19
|
export interface ResourceAdminDtoPagedResponse {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {Array<ResourceAdminDto>}
|
|
23
|
+
* @memberof ResourceAdminDtoPagedResponse
|
|
24
|
+
*/
|
|
15
25
|
'data'?: Array<ResourceAdminDto> | null;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {boolean}
|
|
29
|
+
* @memberof ResourceAdminDtoPagedResponse
|
|
30
|
+
*/
|
|
16
31
|
'isSuccess'?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {number}
|
|
35
|
+
* @memberof ResourceAdminDtoPagedResponse
|
|
36
|
+
*/
|
|
17
37
|
'statusCode'?: number | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof ResourceAdminDtoPagedResponse
|
|
42
|
+
*/
|
|
18
43
|
'traceId'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Pagination}
|
|
47
|
+
* @memberof ResourceAdminDtoPagedResponse
|
|
48
|
+
*/
|
|
19
49
|
'pagination'?: Pagination;
|
|
20
50
|
}
|