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.containerinstance.implementation; import com.fasterxml.jackson.annotation.JsonProperty;
The information for the container exec command.
/** * The information for the container exec command. */
public class ContainerExecResponseInner {
The uri for the exec websocket.
/** * The uri for the exec websocket. */
@JsonProperty(value = "webSocketUri") private String webSocketUri;
The password to start the exec command.
/** * The password to start the exec command. */
@JsonProperty(value = "password") private String password;
Get the uri for the exec websocket.
Returns:the webSocketUri value
/** * Get the uri for the exec websocket. * * @return the webSocketUri value */
public String webSocketUri() { return this.webSocketUri; }
Set the uri for the exec websocket.
Params:
  • webSocketUri – the webSocketUri value to set
Returns:the ContainerExecResponseInner object itself.
/** * Set the uri for the exec websocket. * * @param webSocketUri the webSocketUri value to set * @return the ContainerExecResponseInner object itself. */
public ContainerExecResponseInner withWebSocketUri(String webSocketUri) { this.webSocketUri = webSocketUri; return this; }
Get the password to start the exec command.
Returns:the password value
/** * Get the password to start the exec command. * * @return the password value */
public String password() { return this.password; }
Set the password to start the exec command.
Params:
  • password – the password value to set
Returns:the ContainerExecResponseInner object itself.
/** * Set the password to start the exec command. * * @param password the password value to set * @return the ContainerExecResponseInner object itself. */
public ContainerExecResponseInner withPassword(String password) { this.password = password; return this; } }