com.microsoft.azure.management.containerinstance.Container Maven / Gradle / Ivy
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/
package com.microsoft.azure.management.containerinstance;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.microsoft.rest.serializer.JsonFlatten;
/**
* A container instance.
*/
@JsonFlatten
public class Container {
/**
* The user-provided name of the container instance.
*/
@JsonProperty(value = "name", required = true)
private String name;
/**
* The name of the image used to create the container instance.
*/
@JsonProperty(value = "properties.image", required = true)
private String image;
/**
* The commands to execute within the container instance in exec form.
*/
@JsonProperty(value = "properties.command")
private List command;
/**
* The exposed ports on the container instance.
*/
@JsonProperty(value = "properties.ports")
private List ports;
/**
* The environment variables to set in the container instance.
*/
@JsonProperty(value = "properties.environmentVariables")
private List environmentVariables;
/**
* The instance view of the container instance. Only valid in response.
*/
@JsonProperty(value = "properties.instanceView", access = JsonProperty.Access.WRITE_ONLY)
private ContainerPropertiesInstanceView instanceView;
/**
* The resource requirements of the container instance.
*/
@JsonProperty(value = "properties.resources", required = true)
private ResourceRequirements resources;
/**
* The volume mounts available to the container instance.
*/
@JsonProperty(value = "properties.volumeMounts")
private List volumeMounts;
/**
* The liveness probe.
*/
@JsonProperty(value = "properties.livenessProbe")
private ContainerProbe livenessProbe;
/**
* The readiness probe.
*/
@JsonProperty(value = "properties.readinessProbe")
private ContainerProbe readinessProbe;
/**
* Get the user-provided name of the container instance.
*
* @return the name value
*/
public String name() {
return this.name;
}
/**
* Set the user-provided name of the container instance.
*
* @param name the name value to set
* @return the Container object itself.
*/
public Container withName(String name) {
this.name = name;
return this;
}
/**
* Get the name of the image used to create the container instance.
*
* @return the image value
*/
public String image() {
return this.image;
}
/**
* Set the name of the image used to create the container instance.
*
* @param image the image value to set
* @return the Container object itself.
*/
public Container withImage(String image) {
this.image = image;
return this;
}
/**
* Get the commands to execute within the container instance in exec form.
*
* @return the command value
*/
public List command() {
return this.command;
}
/**
* Set the commands to execute within the container instance in exec form.
*
* @param command the command value to set
* @return the Container object itself.
*/
public Container withCommand(List command) {
this.command = command;
return this;
}
/**
* Get the exposed ports on the container instance.
*
* @return the ports value
*/
public List ports() {
return this.ports;
}
/**
* Set the exposed ports on the container instance.
*
* @param ports the ports value to set
* @return the Container object itself.
*/
public Container withPorts(List ports) {
this.ports = ports;
return this;
}
/**
* Get the environment variables to set in the container instance.
*
* @return the environmentVariables value
*/
public List environmentVariables() {
return this.environmentVariables;
}
/**
* Set the environment variables to set in the container instance.
*
* @param environmentVariables the environmentVariables value to set
* @return the Container object itself.
*/
public Container withEnvironmentVariables(List environmentVariables) {
this.environmentVariables = environmentVariables;
return this;
}
/**
* Get the instance view of the container instance. Only valid in response.
*
* @return the instanceView value
*/
public ContainerPropertiesInstanceView instanceView() {
return this.instanceView;
}
/**
* Get the resource requirements of the container instance.
*
* @return the resources value
*/
public ResourceRequirements resources() {
return this.resources;
}
/**
* Set the resource requirements of the container instance.
*
* @param resources the resources value to set
* @return the Container object itself.
*/
public Container withResources(ResourceRequirements resources) {
this.resources = resources;
return this;
}
/**
* Get the volume mounts available to the container instance.
*
* @return the volumeMounts value
*/
public List volumeMounts() {
return this.volumeMounts;
}
/**
* Set the volume mounts available to the container instance.
*
* @param volumeMounts the volumeMounts value to set
* @return the Container object itself.
*/
public Container withVolumeMounts(List volumeMounts) {
this.volumeMounts = volumeMounts;
return this;
}
/**
* Get the liveness probe.
*
* @return the livenessProbe value
*/
public ContainerProbe livenessProbe() {
return this.livenessProbe;
}
/**
* Set the liveness probe.
*
* @param livenessProbe the livenessProbe value to set
* @return the Container object itself.
*/
public Container withLivenessProbe(ContainerProbe livenessProbe) {
this.livenessProbe = livenessProbe;
return this;
}
/**
* Get the readiness probe.
*
* @return the readinessProbe value
*/
public ContainerProbe readinessProbe() {
return this.readinessProbe;
}
/**
* Set the readiness probe.
*
* @param readinessProbe the readinessProbe value to set
* @return the Container object itself.
*/
public Container withReadinessProbe(ContainerProbe readinessProbe) {
this.readinessProbe = readinessProbe;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy