Class ContainerExecResponseInner
- java.lang.Object
-
- com.azure.resourcemanager.containerinstance.fluent.models.ContainerExecResponseInner
-
public final class ContainerExecResponseInner extends Object
The information for the container exec command.
-
-
Constructor Summary
Constructors Constructor Description ContainerExecResponseInner()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringpassword()Get the password property: The password to start the exec command.voidvalidate()Validates the instance.StringwebSocketUri()Get the webSocketUri property: The uri for the exec websocket.ContainerExecResponseInnerwithPassword(String password)Set the password property: The password to start the exec command.ContainerExecResponseInnerwithWebSocketUri(String webSocketUri)Set the webSocketUri property: The uri for the exec websocket.
-
-
-
Method Detail
-
webSocketUri
public String webSocketUri()
Get the webSocketUri property: The uri for the exec websocket.- Returns:
- the webSocketUri value.
-
withWebSocketUri
public ContainerExecResponseInner withWebSocketUri(String webSocketUri)
Set the webSocketUri property: The uri for the exec websocket.- Parameters:
webSocketUri- the webSocketUri value to set.- Returns:
- the ContainerExecResponseInner object itself.
-
password
public String password()
Get the password property: The password to start the exec command.- Returns:
- the password value.
-
withPassword
public ContainerExecResponseInner withPassword(String password)
Set the password property: The password to start the exec command.- Parameters:
password- the password value to set.- Returns:
- the ContainerExecResponseInner object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException- thrown if the instance is not valid.
-
-