BitmovinApiSdk\Models\GoogleCloudRegion
Synopsis
class GoogleCloudRegion
                extends Enum
            {
        - // methods
 - public static GoogleCloudRegion create()
 - public static GoogleCloudRegion US_CENTRAL_1()
 - public static GoogleCloudRegion US_EAST_1()
 - public static GoogleCloudRegion ASIA_EAST_1()
 - public static GoogleCloudRegion EUROPE_WEST_1()
 - public static GoogleCloudRegion US_WEST_1()
 - public static GoogleCloudRegion ASIA_EAST_2()
 - public static GoogleCloudRegion ASIA_NORTHEAST_1()
 - public static GoogleCloudRegion ASIA_SOUTH_1()
 - public static GoogleCloudRegion ASIA_SOUTHEAST_1()
 - public static GoogleCloudRegion AUSTRALIA_SOUTHEAST_1()
 - public static GoogleCloudRegion EUROPE_NORTH_1()
 - public static GoogleCloudRegion EUROPE_WEST_2()
 - public static GoogleCloudRegion EUROPE_WEST_3()
 - public static GoogleCloudRegion EUROPE_WEST_4()
 - public static GoogleCloudRegion NORTHAMERICA_NORTHEAST_1()
 - public static GoogleCloudRegion SOUTHAMERICA_EAST_1()
 - public static GoogleCloudRegion US_EAST_4()
 - public static GoogleCloudRegion US_WEST_2()
 - public static GoogleCloudRegion ME_CENTRAL_2()
 
- // 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 GoogleCloudRegion __callStatic()
 - public mixed jsonSerialize()
 
Hierarchy
Extends
Methods
public
- ASIA_EAST_1() — Changhua County, Taiwan
 - ASIA_EAST_2() — Hong Kong
 - ASIA_NORTHEAST_1() — Tokyo, Japan
 - ASIA_SOUTHEAST_1() — Jurong West, Singapore
 - ASIA_SOUTH_1() — Mumbai, India
 - AUSTRALIA_SOUTHEAST_1() — Sydney, Australia
 - EUROPE_NORTH_1() — Hamina, Finland
 - EUROPE_WEST_1() — St. Ghislain, Belgium
 - EUROPE_WEST_2() — London, England, UK
 - EUROPE_WEST_3() — Frankfurt, Germany
 - EUROPE_WEST_4() — Eemshaven, Netherlands
 - ME_CENTRAL_2() — Dammam, Saudi Arabia
 - NORTHAMERICA_NORTHEAST_1() — Montréal, Québec, Canada
 - SOUTHAMERICA_EAST_1() — São Paulo, Brazil
 - US_CENTRAL_1() — Council Bluffs, Iowa, USA
 - US_EAST_1() — Moncks Corner, South Carolina, USA
 - US_EAST_4() — Ashburn, Northern Virginia, USA
 - US_WEST_1() — The Dalles, Oregon, USA
 - US_WEST_2() — Los Angeles, California, USA
 - 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