Class ContainerAttachResponseInner
- java.lang.Object
-
- com.azure.resourcemanager.containerinstance.fluent.models.ContainerAttachResponseInner
-
public final class ContainerAttachResponseInner extends Object
The information for the output stream from container attach.
-
-
Constructor Summary
Constructors Constructor Description ContainerAttachResponseInner()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringpassword()Get the password property: The password to the output stream from the attach.voidvalidate()Validates the instance.StringwebSocketUri()Get the webSocketUri property: The uri for the output stream from the attach.ContainerAttachResponseInnerwithPassword(String password)Set the password property: The password to the output stream from the attach.ContainerAttachResponseInnerwithWebSocketUri(String webSocketUri)Set the webSocketUri property: The uri for the output stream from the attach.
-
-
-
Method Detail
-
webSocketUri
public String webSocketUri()
Get the webSocketUri property: The uri for the output stream from the attach.- Returns:
- the webSocketUri value.
-
withWebSocketUri
public ContainerAttachResponseInner withWebSocketUri(String webSocketUri)
Set the webSocketUri property: The uri for the output stream from the attach.- Parameters:
webSocketUri- the webSocketUri value to set.- Returns:
- the ContainerAttachResponseInner object itself.
-
password
public String password()
Get the password property: The password to the output stream from the attach. Send as an Authorization header value when connecting to the websocketUri.- Returns:
- the password value.
-
withPassword
public ContainerAttachResponseInner withPassword(String password)
Set the password property: The password to the output stream from the attach. Send as an Authorization header value when connecting to the websocketUri.- Parameters:
password- the password value to set.- Returns:
- the ContainerAttachResponseInner object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException- thrown if the instance is not valid.
-
-