com.microsoft.azure.management.containerinstance.implementation.ContainerGroupInner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-containerinstance Show documentation
Show all versions of azure-mgmt-containerinstance Show documentation
This package contains Microsoft Azure Container Instance SDK. This package has been deprecated. A replacement package com.azure.resourcemanager:azure-resourcemanager-containerinstance is available as of 31-March-2022. We strongly encourage you to upgrade to continue receiving updates. See Migration Guide https://aka.ms/java-track2-migration-guide for guidance on upgrading. Refer to our deprecation policy https://azure.github.io/azure-sdk/policies_support.html for more details.
/**
* 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.microsoft.azure.management.containerinstance.Container;
import com.microsoft.azure.management.containerinstance.ContainerGroupIdentity;
import java.util.List;
import com.microsoft.azure.management.containerinstance.ImageRegistryCredential;
import com.microsoft.azure.management.containerinstance.ContainerGroupRestartPolicy;
import com.microsoft.azure.management.containerinstance.IpAddress;
import com.microsoft.azure.management.containerinstance.OperatingSystemTypes;
import com.microsoft.azure.management.containerinstance.Volume;
import com.microsoft.azure.management.containerinstance.ContainerGroupPropertiesInstanceView;
import com.microsoft.azure.management.containerinstance.ContainerGroupDiagnostics;
import com.microsoft.azure.management.containerinstance.ContainerGroupNetworkProfile;
import com.microsoft.azure.management.containerinstance.DnsConfiguration;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.microsoft.rest.serializer.JsonFlatten;
import com.microsoft.rest.SkipParentValidation;
import com.microsoft.azure.Resource;
/**
* A container group.
*/
@JsonFlatten
@SkipParentValidation
public class ContainerGroupInner extends Resource {
/**
* The identity of the container group, if configured.
*/
@JsonProperty(value = "identity")
private ContainerGroupIdentity identity;
/**
* The provisioning state of the container group. This only appears in the
* response.
*/
@JsonProperty(value = "properties.provisioningState", access = JsonProperty.Access.WRITE_ONLY)
private String provisioningState;
/**
* The containers within the container group.
*/
@JsonProperty(value = "properties.containers", required = true)
private List containers;
/**
* The image registry credentials by which the container group is created
* from.
*/
@JsonProperty(value = "properties.imageRegistryCredentials")
private List imageRegistryCredentials;
/**
* Restart policy for all containers within the container group.
* - `Always` Always restart
* - `OnFailure` Restart on failure
* - `Never` Never restart
* . Possible values include: 'Always', 'OnFailure', 'Never'.
*/
@JsonProperty(value = "properties.restartPolicy")
private ContainerGroupRestartPolicy restartPolicy;
/**
* The IP address type of the container group.
*/
@JsonProperty(value = "properties.ipAddress")
private IpAddress ipAddress;
/**
* The operating system type required by the containers in the container
* group. Possible values include: 'Windows', 'Linux'.
*/
@JsonProperty(value = "properties.osType", required = true)
private OperatingSystemTypes osType;
/**
* The list of volumes that can be mounted by containers in this container
* group.
*/
@JsonProperty(value = "properties.volumes")
private List volumes;
/**
* The instance view of the container group. Only valid in response.
*/
@JsonProperty(value = "properties.instanceView", access = JsonProperty.Access.WRITE_ONLY)
private ContainerGroupPropertiesInstanceView instanceView;
/**
* The diagnostic information for a container group.
*/
@JsonProperty(value = "properties.diagnostics")
private ContainerGroupDiagnostics diagnostics;
/**
* The network profile information for a container group.
*/
@JsonProperty(value = "properties.networkProfile")
private ContainerGroupNetworkProfile networkProfile;
/**
* The DNS config information for a container group.
*/
@JsonProperty(value = "properties.dnsConfig")
private DnsConfiguration dnsConfig;
/**
* Get the identity of the container group, if configured.
*
* @return the identity value
*/
public ContainerGroupIdentity identity() {
return this.identity;
}
/**
* Set the identity of the container group, if configured.
*
* @param identity the identity value to set
* @return the ContainerGroupInner object itself.
*/
public ContainerGroupInner withIdentity(ContainerGroupIdentity identity) {
this.identity = identity;
return this;
}
/**
* Get the provisioning state of the container group. This only appears in the response.
*
* @return the provisioningState value
*/
public String provisioningState() {
return this.provisioningState;
}
/**
* Get the containers within the container group.
*
* @return the containers value
*/
public List containers() {
return this.containers;
}
/**
* Set the containers within the container group.
*
* @param containers the containers value to set
* @return the ContainerGroupInner object itself.
*/
public ContainerGroupInner withContainers(List containers) {
this.containers = containers;
return this;
}
/**
* Get the image registry credentials by which the container group is created from.
*
* @return the imageRegistryCredentials value
*/
public List imageRegistryCredentials() {
return this.imageRegistryCredentials;
}
/**
* Set the image registry credentials by which the container group is created from.
*
* @param imageRegistryCredentials the imageRegistryCredentials value to set
* @return the ContainerGroupInner object itself.
*/
public ContainerGroupInner withImageRegistryCredentials(List imageRegistryCredentials) {
this.imageRegistryCredentials = imageRegistryCredentials;
return this;
}
/**
* Get restart policy for all containers within the container group.
- `Always` Always restart
- `OnFailure` Restart on failure
- `Never` Never restart
. Possible values include: 'Always', 'OnFailure', 'Never'.
*
* @return the restartPolicy value
*/
public ContainerGroupRestartPolicy restartPolicy() {
return this.restartPolicy;
}
/**
* Set restart policy for all containers within the container group.
- `Always` Always restart
- `OnFailure` Restart on failure
- `Never` Never restart
. Possible values include: 'Always', 'OnFailure', 'Never'.
*
* @param restartPolicy the restartPolicy value to set
* @return the ContainerGroupInner object itself.
*/
public ContainerGroupInner withRestartPolicy(ContainerGroupRestartPolicy restartPolicy) {
this.restartPolicy = restartPolicy;
return this;
}
/**
* Get the IP address type of the container group.
*
* @return the ipAddress value
*/
public IpAddress ipAddress() {
return this.ipAddress;
}
/**
* Set the IP address type of the container group.
*
* @param ipAddress the ipAddress value to set
* @return the ContainerGroupInner object itself.
*/
public ContainerGroupInner withIpAddress(IpAddress ipAddress) {
this.ipAddress = ipAddress;
return this;
}
/**
* Get the operating system type required by the containers in the container group. Possible values include: 'Windows', 'Linux'.
*
* @return the osType value
*/
public OperatingSystemTypes osType() {
return this.osType;
}
/**
* Set the operating system type required by the containers in the container group. Possible values include: 'Windows', 'Linux'.
*
* @param osType the osType value to set
* @return the ContainerGroupInner object itself.
*/
public ContainerGroupInner withOsType(OperatingSystemTypes osType) {
this.osType = osType;
return this;
}
/**
* Get the list of volumes that can be mounted by containers in this container group.
*
* @return the volumes value
*/
public List volumes() {
return this.volumes;
}
/**
* Set the list of volumes that can be mounted by containers in this container group.
*
* @param volumes the volumes value to set
* @return the ContainerGroupInner object itself.
*/
public ContainerGroupInner withVolumes(List volumes) {
this.volumes = volumes;
return this;
}
/**
* Get the instance view of the container group. Only valid in response.
*
* @return the instanceView value
*/
public ContainerGroupPropertiesInstanceView instanceView() {
return this.instanceView;
}
/**
* Get the diagnostic information for a container group.
*
* @return the diagnostics value
*/
public ContainerGroupDiagnostics diagnostics() {
return this.diagnostics;
}
/**
* Set the diagnostic information for a container group.
*
* @param diagnostics the diagnostics value to set
* @return the ContainerGroupInner object itself.
*/
public ContainerGroupInner withDiagnostics(ContainerGroupDiagnostics diagnostics) {
this.diagnostics = diagnostics;
return this;
}
/**
* Get the network profile information for a container group.
*
* @return the networkProfile value
*/
public ContainerGroupNetworkProfile networkProfile() {
return this.networkProfile;
}
/**
* Set the network profile information for a container group.
*
* @param networkProfile the networkProfile value to set
* @return the ContainerGroupInner object itself.
*/
public ContainerGroupInner withNetworkProfile(ContainerGroupNetworkProfile networkProfile) {
this.networkProfile = networkProfile;
return this;
}
/**
* Get the DNS config information for a container group.
*
* @return the dnsConfig value
*/
public DnsConfiguration dnsConfig() {
return this.dnsConfig;
}
/**
* Set the DNS config information for a container group.
*
* @param dnsConfig the dnsConfig value to set
* @return the ContainerGroupInner object itself.
*/
public ContainerGroupInner withDnsConfig(DnsConfiguration dnsConfig) {
this.dnsConfig = dnsConfig;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy