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.batch; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonValue;
Defines values for CertificateVisibility.
/** * Defines values for CertificateVisibility. */
public enum CertificateVisibility {
The certificate should be visible to the user account under which the start task is run. Note that if AutoUser Scope is Pool for both the StartTask and a Task, this certificate will be visible to the Task as well.
/** The certificate should be visible to the user account under which the start task is run. Note that if AutoUser Scope is Pool for both the StartTask and a Task, this certificate will be visible to the Task as well. */
START_TASK("StartTask"),
The certificate should be visible to the user accounts under which job tasks are run.
/** The certificate should be visible to the user accounts under which job tasks are run. */
TASK("Task"),
The certificate should be visible to the user accounts under which users remotely access the node.
/** The certificate should be visible to the user accounts under which users remotely access the node. */
REMOTE_USER("RemoteUser");
The actual serialized value for a CertificateVisibility instance.
/** The actual serialized value for a CertificateVisibility instance. */
private String value; CertificateVisibility(String value) { this.value = value; }
Parses a serialized value to a CertificateVisibility instance.
Params:
  • value – the serialized value to parse.
Returns:the parsed CertificateVisibility object, or null if unable to parse.
/** * Parses a serialized value to a CertificateVisibility instance. * * @param value the serialized value to parse. * @return the parsed CertificateVisibility object, or null if unable to parse. */
@JsonCreator public static CertificateVisibility fromString(String value) { CertificateVisibility[] items = CertificateVisibility.values(); for (CertificateVisibility item : items) { if (item.toString().equalsIgnoreCase(value)) { return item; } } return null; } @JsonValue @Override public String toString() { return this.value; } }