public enum IPAddressProvisioningType extends Enum<IPAddressProvisioningType>
| Enum Constant and Description |
|---|
BATCH_MANAGED
A public IP will be created and managed by Batch.
|
NO_PUBLIC_IPADDRESSES
No public IP Address will be created for the Compute Nodes in the Pool.
|
USER_MANAGED
Public IPs are provided by the user and will be used to provision the Compute Nodes.
|
| Modifier and Type | Method and Description |
|---|---|
static IPAddressProvisioningType |
fromString(String value)
Parses a serialized value to a IPAddressProvisioningType instance.
|
String |
toString() |
static IPAddressProvisioningType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IPAddressProvisioningType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IPAddressProvisioningType BATCH_MANAGED
public static final IPAddressProvisioningType USER_MANAGED
public static final IPAddressProvisioningType NO_PUBLIC_IPADDRESSES
public static IPAddressProvisioningType[] values()
for (IPAddressProvisioningType c : IPAddressProvisioningType.values()) System.out.println(c);
public static IPAddressProvisioningType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static IPAddressProvisioningType fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<IPAddressProvisioningType>/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/