BitmovinApiSdk\Models\AzureCloudRegion
Synopsis
class AzureCloudRegion
extends Enum
{
- // methods
- public static AzureCloudRegion create()
- public static AzureCloudRegion ASIA_EAST()
- public static AzureCloudRegion ASIA_SOUTHEAST()
- public static AzureCloudRegion AUSTRALIA_EAST()
- public static AzureCloudRegion AUSTRALIA_SOUTHEAST()
- public static AzureCloudRegion BRAZIL_SOUTH()
- public static AzureCloudRegion CANADA_CENTRAL()
- public static AzureCloudRegion EUROPE_NORTH()
- public static AzureCloudRegion EUROPE_WEST()
- public static AzureCloudRegion FRANCE_CENTRAL()
- public static AzureCloudRegion GERMANY_WESTCENTRAL()
- public static AzureCloudRegion INDIA_CENTRAL()
- public static AzureCloudRegion INDIA_SOUTH()
- public static AzureCloudRegion JAPAN_EAST()
- public static AzureCloudRegion JAPAN_WEST()
- public static AzureCloudRegion KOREA_CENTRAL()
- public static AzureCloudRegion UAE_NORTH()
- public static AzureCloudRegion US_CENTRAL()
- public static AzureCloudRegion US_EAST()
- public static AzureCloudRegion US_EAST2()
- public static AzureCloudRegion US_WEST()
- public static AzureCloudRegion US_WEST2()
- public static AzureCloudRegion US_SOUTH_CENTRAL()
- public static AzureCloudRegion US_NORTH_CENTRAL()
- public static AzureCloudRegion UK_SOUTH()
- // Inherited methods from Enum
- public void __construct()
- public mixed getValue()
- public mixed getKey()
- public string __toString()
- public final bool equals()
- public static array keys()
- public static array values()
- public static array toArray()
- public static bool isValidKey()
- public static mixed search()
- public static AzureCloudRegion __callStatic()
- public mixed jsonSerialize()
Hierarchy
Extends
Methods
public
- ASIA_EAST() — Hong Kong
- ASIA_SOUTHEAST() — Singapore
- AUSTRALIA_EAST() — New South Wales
- AUSTRALIA_SOUTHEAST() — Victoria
- BRAZIL_SOUTH() — São Paulo
- CANADA_CENTRAL() — Toronto
- EUROPE_NORTH() — Ireland
- EUROPE_WEST() — Netherlands
- FRANCE_CENTRAL() — Paris
- GERMANY_WESTCENTRAL() — Frankfurt
- INDIA_CENTRAL() — Pune
- INDIA_SOUTH() — Chennai
- JAPAN_EAST() — Tokyo, Saitama
- JAPAN_WEST() — Osaka
- KOREA_CENTRAL() — Seoul
- UAE_NORTH() — Dubai
- UK_SOUTH() — London
- US_CENTRAL() — Iowa
- US_EAST() — Virginia
- US_EAST2() — Virginia
- US_NORTH_CENTRAL() — Illinois
- US_SOUTH_CENTRAL() — Texas
- US_WEST() — California
- US_WEST2() — Washington
- create()
Inherited from BitmovinApiSdk\Common\Enum
public
- __callStatic() — Returns a value when called statically like so: MyEnum::SOME_VALUE() given SOME_VALUE is a class constant
- __toString()
- equals() — Determines if Enum should be considered equal with the variable passed as a parameter.
- getKey() — Returns the enum key (i.e. the constant name).
- getValue()
- isValidKey() — Check if is valid enum key
- jsonSerialize() — Specify data which should be serialized to JSON. This method returns data that can be serialized by json_encode() natively.
- keys() — Returns the names (keys) of all constants in the Enum class
- search() — Return key for value
- toArray() — Returns all possible values as an array
- values() — Returns instances of the Enum class of all Enum constants