Class ValidateContainerSettingsRequest
- java.lang.Object
-
- com.microsoft.azure.management.appservice.ValidateContainerSettingsRequest
-
public class ValidateContainerSettingsRequest extends Object
Container settings validation request context.
-
-
Constructor Summary
Constructors Constructor Description ValidateContainerSettingsRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringbaseUrl()Get base URL of the container registry.Stringpassword()Get password for to access the container registry.Stringplatform()Get platform (windows or linux).Stringrepository()Get repository name (image name).Stringtag()Get image tag.Stringusername()Get username for to access the container registry.ValidateContainerSettingsRequestwithBaseUrl(String baseUrl)Set base URL of the container registry.ValidateContainerSettingsRequestwithPassword(String password)Set password for to access the container registry.ValidateContainerSettingsRequestwithPlatform(String platform)Set platform (windows or linux).ValidateContainerSettingsRequestwithRepository(String repository)Set repository name (image name).ValidateContainerSettingsRequestwithTag(String tag)Set image tag.ValidateContainerSettingsRequestwithUsername(String username)Set username for to access the container registry.
-
-
-
Method Detail
-
baseUrl
public String baseUrl()
Get base URL of the container registry.- Returns:
- the baseUrl value
-
withBaseUrl
public ValidateContainerSettingsRequest withBaseUrl(String baseUrl)
Set base URL of the container registry.- Parameters:
baseUrl- the baseUrl value to set- Returns:
- the ValidateContainerSettingsRequest object itself.
-
username
public String username()
Get username for to access the container registry.- Returns:
- the username value
-
withUsername
public ValidateContainerSettingsRequest withUsername(String username)
Set username for to access the container registry.- Parameters:
username- the username value to set- Returns:
- the ValidateContainerSettingsRequest object itself.
-
password
public String password()
Get password for to access the container registry.- Returns:
- the password value
-
withPassword
public ValidateContainerSettingsRequest withPassword(String password)
Set password for to access the container registry.- Parameters:
password- the password value to set- Returns:
- the ValidateContainerSettingsRequest object itself.
-
repository
public String repository()
Get repository name (image name).- Returns:
- the repository value
-
withRepository
public ValidateContainerSettingsRequest withRepository(String repository)
Set repository name (image name).- Parameters:
repository- the repository value to set- Returns:
- the ValidateContainerSettingsRequest object itself.
-
tag
public String tag()
Get image tag.- Returns:
- the tag value
-
withTag
public ValidateContainerSettingsRequest withTag(String tag)
Set image tag.- Parameters:
tag- the tag value to set- Returns:
- the ValidateContainerSettingsRequest object itself.
-
platform
public String platform()
Get platform (windows or linux).- Returns:
- the platform value
-
withPlatform
public ValidateContainerSettingsRequest withPlatform(String platform)
Set platform (windows or linux).- Parameters:
platform- the platform value to set- Returns:
- the ValidateContainerSettingsRequest object itself.
-
-