Skip to content
Snippets Groups Projects
Commit e0a0bb46 authored by Petar Hristov's avatar Petar Hristov :speech_balloon: Committed by L. Ellenbeck
Browse files

New: Maintenance mode for resources

parent c8af389f
No related branches found
No related tags found
2 merge requests!35Dev,!33New: Maintenance mode for resources
......@@ -14,8 +14,8 @@ Name | Type | Description | Notes
**Keywords** | **List<string>** | Keywords associated with the resource. | [optional]
**License** | [**LicenseDto**](LicenseDto.md) | | [optional]
**UsageRights** | **string** | Usage rights associated with the resource. | [optional]
**MetadataLocalCopy** | **bool** | Setting for creating a local copy of the metadata. | [optional]
**MetadataExtraction** | **bool** | Setting for metadata extraction. | [optional]
**MetadataLocalCopy** | **bool** | Indicates whether a local copy of the metadata is available for the resource. | [optional]
**MetadataExtraction** | **bool** | Indicates whether metadata extraction is enabled for the resource. | [optional]
**ApplicationProfile** | [**ApplicationProfileMinimalDto**](ApplicationProfileMinimalDto.md) | |
**FixedValues** | **Dictionary<string, Dictionary<string, List<FixedValueForResourceManipulationDto>>>** | Fixed values associated with resource manipulation. This dictionary may contain multiple levels and is structured as follows: Dictionary (Key: string) -> Dictionary (Key: string) -> List of FixedValueForResourceManipulationDto. |
**Disciplines** | [**List<DisciplineDto>**](DisciplineDto.md) | Disciplines associated with the resource. |
......@@ -23,6 +23,7 @@ Name | Type | Description | Notes
**DateCreated** | **DateTime?** | Date when the resource was created. | [optional]
**Creator** | [**UserMinimalDto**](UserMinimalDto.md) | | [optional]
**Archived** | **bool** | Indicates whether the resource is archived. | [optional]
**MaintenanceMode** | **bool** | Indicates whether the resource is in maintenance mode. | [optional]
**Projects** | [**List<ProjectMinimalDto>**](ProjectMinimalDto.md) | The projects associated with the resource. | [optional]
**Deleted** | **bool** | Indicates whether the resource is deleted. |
**ProjectResources** | [**List<ProjectResourceMinimalDto>**](ProjectResourceMinimalDto.md) | Collection of minimal project resource details associated with this resource. |
......
......@@ -14,8 +14,8 @@ Name | Type | Description | Notes
**Keywords** | **List<string>** | Keywords associated with the resource. | [optional]
**License** | [**LicenseDto**](LicenseDto.md) | | [optional]
**UsageRights** | **string** | Usage rights associated with the resource. | [optional]
**MetadataLocalCopy** | **bool** | Setting for creating a local copy of the metadata. | [optional]
**MetadataExtraction** | **bool** | Setting for metadata extraction. | [optional]
**MetadataLocalCopy** | **bool** | Indicates whether a local copy of the metadata is available for the resource. | [optional]
**MetadataExtraction** | **bool** | Indicates whether metadata extraction is enabled for the resource. | [optional]
**ApplicationProfile** | [**ApplicationProfileMinimalDto**](ApplicationProfileMinimalDto.md) | |
**FixedValues** | **Dictionary<string, Dictionary<string, List<FixedValueForResourceManipulationDto>>>** | Fixed values associated with resource manipulation. This dictionary may contain multiple levels and is structured as follows: Dictionary (Key: string) -> Dictionary (Key: string) -> List of FixedValueForResourceManipulationDto. |
**Disciplines** | [**List<DisciplineDto>**](DisciplineDto.md) | Disciplines associated with the resource. |
......@@ -23,6 +23,7 @@ Name | Type | Description | Notes
**DateCreated** | **DateTime?** | Date when the resource was created. | [optional]
**Creator** | [**UserMinimalDto**](UserMinimalDto.md) | | [optional]
**Archived** | **bool** | Indicates whether the resource is archived. | [optional]
**MaintenanceMode** | **bool** | Indicates whether the resource is in maintenance mode. | [optional]
**Projects** | [**List<ProjectMinimalDto>**](ProjectMinimalDto.md) | The projects associated with the resource. | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
......
......@@ -17,6 +17,7 @@ Name | Type | Description | Notes
**Disciplines** | [**List<DisciplineForResourceManipulationDto>**](DisciplineForResourceManipulationDto.md) | The disciplines associated with the resource. |
**Archived** | **bool** | Indicates whether the resource is archived. |
**ResourceTypeOptions** | [**ResourceTypeOptionsForUpdateDto**](ResourceTypeOptionsForUpdateDto.md) | | [optional]
**MaintenanceMode** | **bool?** | Indicates whether the resource is in maintenance mode. | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
......@@ -36,7 +36,8 @@ podman run --rm \
--artifact-id "$ARTIFACT_ID" \
--package-name "$PACKAGE_NAME" \
--skip-validate-spec \
--server-variables=host=localhost:5000,basePath=coscine
--server-variables=host=localhost:5000,basePath=coscine \
--additional-properties=targetFramework=net8.0
echo -e "${GREEN}API client generation complete.${NC}"
......
......@@ -217,6 +217,15 @@ namespace Coscine.ApiClient.Core.Test.Model
// TODO unit test for the property 'Archived'
}
/// <summary>
/// Test the property 'MaintenanceMode'
/// </summary>
[Fact]
public void MaintenanceModeTest()
{
// TODO unit test for the property 'MaintenanceMode'
}
/// <summary>
/// Test the property 'Projects'
/// </summary>
......
......@@ -217,6 +217,15 @@ namespace Coscine.ApiClient.Core.Test.Model
// TODO unit test for the property 'Archived'
}
/// <summary>
/// Test the property 'MaintenanceMode'
/// </summary>
[Fact]
public void MaintenanceModeTest()
{
// TODO unit test for the property 'MaintenanceMode'
}
/// <summary>
/// Test the property 'Projects'
/// </summary>
......
......@@ -162,5 +162,14 @@ namespace Coscine.ApiClient.Core.Test.Model
{
// TODO unit test for the property 'ResourceTypeOptions'
}
/// <summary>
/// Test the property 'MaintenanceMode'
/// </summary>
[Fact]
public void MaintenanceModeTest()
{
// TODO unit test for the property 'MaintenanceMode'
}
}
}
......@@ -49,8 +49,8 @@ namespace Coscine.ApiClient.Core.Model
/// <param name="keywords">Keywords associated with the resource..</param>
/// <param name="license">license.</param>
/// <param name="usageRights">Usage rights associated with the resource..</param>
/// <param name="metadataLocalCopy">Setting for creating a local copy of the metadata..</param>
/// <param name="metadataExtraction">Setting for metadata extraction..</param>
/// <param name="metadataLocalCopy">Indicates whether a local copy of the metadata is available for the resource..</param>
/// <param name="metadataExtraction">Indicates whether metadata extraction is enabled for the resource..</param>
/// <param name="applicationProfile">applicationProfile (required).</param>
/// <param name="fixedValues">Fixed values associated with resource manipulation. This dictionary may contain multiple levels and is structured as follows: Dictionary (Key: string) -&gt; Dictionary (Key: string) -&gt; List of FixedValueForResourceManipulationDto. (required).</param>
/// <param name="disciplines">Disciplines associated with the resource. (required).</param>
......@@ -58,11 +58,12 @@ namespace Coscine.ApiClient.Core.Model
/// <param name="dateCreated">Date when the resource was created..</param>
/// <param name="creator">creator.</param>
/// <param name="archived">Indicates whether the resource is archived..</param>
/// <param name="maintenanceMode">Indicates whether the resource is in maintenance mode..</param>
/// <param name="projects">The projects associated with the resource..</param>
/// <param name="deleted">Indicates whether the resource is deleted. (required).</param>
/// <param name="projectResources">Collection of minimal project resource details associated with this resource. (required).</param>
/// <param name="resourceQuota">resourceQuota.</param>
public ResourceAdminDto(Guid id = default(Guid), string pid = default(string), ResourceTypeDto type = default(ResourceTypeDto), string name = default(string), string displayName = default(string), string description = default(string), List<string> keywords = default(List<string>), LicenseDto license = default(LicenseDto), string usageRights = default(string), bool metadataLocalCopy = default(bool), bool metadataExtraction = default(bool), ApplicationProfileMinimalDto applicationProfile = default(ApplicationProfileMinimalDto), Dictionary<string, Dictionary<string, List<FixedValueForResourceManipulationDto>>> fixedValues = default(Dictionary<string, Dictionary<string, List<FixedValueForResourceManipulationDto>>>), List<DisciplineDto> disciplines = default(List<DisciplineDto>), VisibilityDto visibility = default(VisibilityDto), DateTime? dateCreated = default(DateTime?), UserMinimalDto creator = default(UserMinimalDto), bool archived = default(bool), List<ProjectMinimalDto> projects = default(List<ProjectMinimalDto>), bool deleted = default(bool), List<ProjectResourceMinimalDto> projectResources = default(List<ProjectResourceMinimalDto>), ResourceQuotaDto resourceQuota = default(ResourceQuotaDto))
public ResourceAdminDto(Guid id = default(Guid), string pid = default(string), ResourceTypeDto type = default(ResourceTypeDto), string name = default(string), string displayName = default(string), string description = default(string), List<string> keywords = default(List<string>), LicenseDto license = default(LicenseDto), string usageRights = default(string), bool metadataLocalCopy = default(bool), bool metadataExtraction = default(bool), ApplicationProfileMinimalDto applicationProfile = default(ApplicationProfileMinimalDto), Dictionary<string, Dictionary<string, List<FixedValueForResourceManipulationDto>>> fixedValues = default(Dictionary<string, Dictionary<string, List<FixedValueForResourceManipulationDto>>>), List<DisciplineDto> disciplines = default(List<DisciplineDto>), VisibilityDto visibility = default(VisibilityDto), DateTime? dateCreated = default(DateTime?), UserMinimalDto creator = default(UserMinimalDto), bool archived = default(bool), bool maintenanceMode = default(bool), List<ProjectMinimalDto> projects = default(List<ProjectMinimalDto>), bool deleted = default(bool), List<ProjectResourceMinimalDto> projectResources = default(List<ProjectResourceMinimalDto>), ResourceQuotaDto resourceQuota = default(ResourceQuotaDto))
{
// to ensure "pid" is required (not null)
if (pid == null)
......@@ -134,6 +135,7 @@ namespace Coscine.ApiClient.Core.Model
this.DateCreated = dateCreated;
this.Creator = creator;
this.Archived = archived;
this.MaintenanceMode = maintenanceMode;
this.Projects = projects;
this.ResourceQuota = resourceQuota;
}
......@@ -200,16 +202,16 @@ namespace Coscine.ApiClient.Core.Model
public string UsageRights { get; set; }
/// <summary>
/// Setting for creating a local copy of the metadata.
/// Indicates whether a local copy of the metadata is available for the resource.
/// </summary>
/// <value>Setting for creating a local copy of the metadata.</value>
/// <value>Indicates whether a local copy of the metadata is available for the resource.</value>
[DataMember(Name = "metadataLocalCopy", EmitDefaultValue = true)]
public bool MetadataLocalCopy { get; set; }
/// <summary>
/// Setting for metadata extraction.
/// Indicates whether metadata extraction is enabled for the resource.
/// </summary>
/// <value>Setting for metadata extraction.</value>
/// <value>Indicates whether metadata extraction is enabled for the resource.</value>
[DataMember(Name = "metadataExtraction", EmitDefaultValue = true)]
public bool MetadataExtraction { get; set; }
......@@ -259,6 +261,13 @@ namespace Coscine.ApiClient.Core.Model
[DataMember(Name = "archived", EmitDefaultValue = true)]
public bool Archived { get; set; }
/// <summary>
/// Indicates whether the resource is in maintenance mode.
/// </summary>
/// <value>Indicates whether the resource is in maintenance mode.</value>
[DataMember(Name = "maintenanceMode", EmitDefaultValue = true)]
public bool MaintenanceMode { get; set; }
/// <summary>
/// The projects associated with the resource.
/// </summary>
......@@ -312,6 +321,7 @@ namespace Coscine.ApiClient.Core.Model
sb.Append(" DateCreated: ").Append(DateCreated).Append("\n");
sb.Append(" Creator: ").Append(Creator).Append("\n");
sb.Append(" Archived: ").Append(Archived).Append("\n");
sb.Append(" MaintenanceMode: ").Append(MaintenanceMode).Append("\n");
sb.Append(" Projects: ").Append(Projects).Append("\n");
sb.Append(" Deleted: ").Append(Deleted).Append("\n");
sb.Append(" ProjectResources: ").Append(ProjectResources).Append("\n");
......
......@@ -49,8 +49,8 @@ namespace Coscine.ApiClient.Core.Model
/// <param name="keywords">Keywords associated with the resource..</param>
/// <param name="license">license.</param>
/// <param name="usageRights">Usage rights associated with the resource..</param>
/// <param name="metadataLocalCopy">Setting for creating a local copy of the metadata..</param>
/// <param name="metadataExtraction">Setting for metadata extraction..</param>
/// <param name="metadataLocalCopy">Indicates whether a local copy of the metadata is available for the resource..</param>
/// <param name="metadataExtraction">Indicates whether metadata extraction is enabled for the resource..</param>
/// <param name="applicationProfile">applicationProfile (required).</param>
/// <param name="fixedValues">Fixed values associated with resource manipulation. This dictionary may contain multiple levels and is structured as follows: Dictionary (Key: string) -&gt; Dictionary (Key: string) -&gt; List of FixedValueForResourceManipulationDto. (required).</param>
/// <param name="disciplines">Disciplines associated with the resource. (required).</param>
......@@ -58,8 +58,9 @@ namespace Coscine.ApiClient.Core.Model
/// <param name="dateCreated">Date when the resource was created..</param>
/// <param name="creator">creator.</param>
/// <param name="archived">Indicates whether the resource is archived..</param>
/// <param name="maintenanceMode">Indicates whether the resource is in maintenance mode..</param>
/// <param name="projects">The projects associated with the resource..</param>
public ResourceDto(Guid id = default(Guid), string pid = default(string), ResourceTypeDto type = default(ResourceTypeDto), string name = default(string), string displayName = default(string), string description = default(string), List<string> keywords = default(List<string>), LicenseDto license = default(LicenseDto), string usageRights = default(string), bool metadataLocalCopy = default(bool), bool metadataExtraction = default(bool), ApplicationProfileMinimalDto applicationProfile = default(ApplicationProfileMinimalDto), Dictionary<string, Dictionary<string, List<FixedValueForResourceManipulationDto>>> fixedValues = default(Dictionary<string, Dictionary<string, List<FixedValueForResourceManipulationDto>>>), List<DisciplineDto> disciplines = default(List<DisciplineDto>), VisibilityDto visibility = default(VisibilityDto), DateTime? dateCreated = default(DateTime?), UserMinimalDto creator = default(UserMinimalDto), bool archived = default(bool), List<ProjectMinimalDto> projects = default(List<ProjectMinimalDto>))
public ResourceDto(Guid id = default(Guid), string pid = default(string), ResourceTypeDto type = default(ResourceTypeDto), string name = default(string), string displayName = default(string), string description = default(string), List<string> keywords = default(List<string>), LicenseDto license = default(LicenseDto), string usageRights = default(string), bool metadataLocalCopy = default(bool), bool metadataExtraction = default(bool), ApplicationProfileMinimalDto applicationProfile = default(ApplicationProfileMinimalDto), Dictionary<string, Dictionary<string, List<FixedValueForResourceManipulationDto>>> fixedValues = default(Dictionary<string, Dictionary<string, List<FixedValueForResourceManipulationDto>>>), List<DisciplineDto> disciplines = default(List<DisciplineDto>), VisibilityDto visibility = default(VisibilityDto), DateTime? dateCreated = default(DateTime?), UserMinimalDto creator = default(UserMinimalDto), bool archived = default(bool), bool maintenanceMode = default(bool), List<ProjectMinimalDto> projects = default(List<ProjectMinimalDto>))
{
// to ensure "pid" is required (not null)
if (pid == null)
......@@ -124,6 +125,7 @@ namespace Coscine.ApiClient.Core.Model
this.DateCreated = dateCreated;
this.Creator = creator;
this.Archived = archived;
this.MaintenanceMode = maintenanceMode;
this.Projects = projects;
}
......@@ -189,16 +191,16 @@ namespace Coscine.ApiClient.Core.Model
public string UsageRights { get; set; }
/// <summary>
/// Setting for creating a local copy of the metadata.
/// Indicates whether a local copy of the metadata is available for the resource.
/// </summary>
/// <value>Setting for creating a local copy of the metadata.</value>
/// <value>Indicates whether a local copy of the metadata is available for the resource.</value>
[DataMember(Name = "metadataLocalCopy", EmitDefaultValue = true)]
public bool MetadataLocalCopy { get; set; }
/// <summary>
/// Setting for metadata extraction.
/// Indicates whether metadata extraction is enabled for the resource.
/// </summary>
/// <value>Setting for metadata extraction.</value>
/// <value>Indicates whether metadata extraction is enabled for the resource.</value>
[DataMember(Name = "metadataExtraction", EmitDefaultValue = true)]
public bool MetadataExtraction { get; set; }
......@@ -248,6 +250,13 @@ namespace Coscine.ApiClient.Core.Model
[DataMember(Name = "archived", EmitDefaultValue = true)]
public bool Archived { get; set; }
/// <summary>
/// Indicates whether the resource is in maintenance mode.
/// </summary>
/// <value>Indicates whether the resource is in maintenance mode.</value>
[DataMember(Name = "maintenanceMode", EmitDefaultValue = true)]
public bool MaintenanceMode { get; set; }
/// <summary>
/// The projects associated with the resource.
/// </summary>
......@@ -281,6 +290,7 @@ namespace Coscine.ApiClient.Core.Model
sb.Append(" DateCreated: ").Append(DateCreated).Append("\n");
sb.Append(" Creator: ").Append(Creator).Append("\n");
sb.Append(" Archived: ").Append(Archived).Append("\n");
sb.Append(" MaintenanceMode: ").Append(MaintenanceMode).Append("\n");
sb.Append(" Projects: ").Append(Projects).Append("\n");
sb.Append("}\n");
return sb.ToString();
......
......@@ -52,7 +52,8 @@ namespace Coscine.ApiClient.Core.Model
/// <param name="disciplines">The disciplines associated with the resource. (required).</param>
/// <param name="archived">Indicates whether the resource is archived. (required).</param>
/// <param name="resourceTypeOptions">resourceTypeOptions.</param>
public ResourceForUpdateDto(string name = default(string), string displayName = default(string), string description = default(string), List<string> keywords = default(List<string>), Dictionary<string, Dictionary<string, List<FixedValueForResourceManipulationDto>>> fixedValues = default(Dictionary<string, Dictionary<string, List<FixedValueForResourceManipulationDto>>>), LicenseForResourceManipulationDto license = default(LicenseForResourceManipulationDto), string usageRights = default(string), bool? metadataLocalCopy = default(bool?), VisibilityForResourceManipulationDto visibility = default(VisibilityForResourceManipulationDto), List<DisciplineForResourceManipulationDto> disciplines = default(List<DisciplineForResourceManipulationDto>), bool archived = default(bool), ResourceTypeOptionsForUpdateDto resourceTypeOptions = default(ResourceTypeOptionsForUpdateDto))
/// <param name="maintenanceMode">Indicates whether the resource is in maintenance mode..</param>
public ResourceForUpdateDto(string name = default(string), string displayName = default(string), string description = default(string), List<string> keywords = default(List<string>), Dictionary<string, Dictionary<string, List<FixedValueForResourceManipulationDto>>> fixedValues = default(Dictionary<string, Dictionary<string, List<FixedValueForResourceManipulationDto>>>), LicenseForResourceManipulationDto license = default(LicenseForResourceManipulationDto), string usageRights = default(string), bool? metadataLocalCopy = default(bool?), VisibilityForResourceManipulationDto visibility = default(VisibilityForResourceManipulationDto), List<DisciplineForResourceManipulationDto> disciplines = default(List<DisciplineForResourceManipulationDto>), bool archived = default(bool), ResourceTypeOptionsForUpdateDto resourceTypeOptions = default(ResourceTypeOptionsForUpdateDto), bool? maintenanceMode = default(bool?))
{
// to ensure "name" is required (not null)
if (name == null)
......@@ -86,6 +87,7 @@ namespace Coscine.ApiClient.Core.Model
this.UsageRights = usageRights;
this.MetadataLocalCopy = metadataLocalCopy;
this.ResourceTypeOptions = resourceTypeOptions;
this.MaintenanceMode = maintenanceMode;
}
/// <summary>
......@@ -169,6 +171,13 @@ namespace Coscine.ApiClient.Core.Model
[DataMember(Name = "resourceTypeOptions", EmitDefaultValue = false)]
public ResourceTypeOptionsForUpdateDto ResourceTypeOptions { get; set; }
/// <summary>
/// Indicates whether the resource is in maintenance mode.
/// </summary>
/// <value>Indicates whether the resource is in maintenance mode.</value>
[DataMember(Name = "maintenanceMode", EmitDefaultValue = true)]
public bool? MaintenanceMode { get; set; }
/// <summary>
/// Returns the string presentation of the object
/// </summary>
......@@ -189,6 +198,7 @@ namespace Coscine.ApiClient.Core.Model
sb.Append(" Disciplines: ").Append(Disciplines).Append("\n");
sb.Append(" Archived: ").Append(Archived).Append("\n");
sb.Append(" ResourceTypeOptions: ").Append(ResourceTypeOptions).Append("\n");
sb.Append(" MaintenanceMode: ").Append(MaintenanceMode).Append("\n");
sb.Append("}\n");
return sb.ToString();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment