Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.containerregistry; import com.fasterxml.jackson.annotation.JsonProperty;
The set of run properties that can be updated.
/** * The set of run properties that can be updated. */
public class RunUpdateParameters {
The value that indicates whether archiving is enabled or not.
/** * The value that indicates whether archiving is enabled or not. */
@JsonProperty(value = "isArchiveEnabled") private Boolean isArchiveEnabled;
Get the value that indicates whether archiving is enabled or not.
Returns:the isArchiveEnabled value
/** * Get the value that indicates whether archiving is enabled or not. * * @return the isArchiveEnabled value */
public Boolean isArchiveEnabled() { return this.isArchiveEnabled; }
Set the value that indicates whether archiving is enabled or not.
Params:
  • isArchiveEnabled – the isArchiveEnabled value to set
Returns:the RunUpdateParameters object itself.
/** * Set the value that indicates whether archiving is enabled or not. * * @param isArchiveEnabled the isArchiveEnabled value to set * @return the RunUpdateParameters object itself. */
public RunUpdateParameters withIsArchiveEnabled(Boolean isArchiveEnabled) { this.isArchiveEnabled = isArchiveEnabled; return this; } }