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.containerservice; import com.fasterxml.jackson.annotation.JsonProperty;
The credential result response.
/** * The credential result response. */
public class CredentialResult {
The name of the credential.
/** * The name of the credential. */
@JsonProperty(value = "name", access = JsonProperty.Access.WRITE_ONLY) private String name;
Base64-encoded Kubernetes configuration file.
/** * Base64-encoded Kubernetes configuration file. */
@JsonProperty(value = "value", access = JsonProperty.Access.WRITE_ONLY) private byte[] value;
Get the name of the credential.
Returns:the name value
/** * Get the name of the credential. * * @return the name value */
public String name() { return this.name; }
Get base64-encoded Kubernetes configuration file.
Returns:the value value
/** * Get base64-encoded Kubernetes configuration file. * * @return the value value */
public byte[] value() { return this.value; } }