本文整理汇总了PHP中Scalr\Modules\PlatformFactory::getCanonicalOpenstackPlatforms方法的典型用法代码示例。如果您正苦于以下问题:PHP PlatformFactory::getCanonicalOpenstackPlatforms方法的具体用法?PHP PlatformFactory::getCanonicalOpenstackPlatforms怎么用?PHP PlatformFactory::getCanonicalOpenstackPlatforms使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Scalr\Modules\PlatformFactory
的用法示例。
在下文中一共展示了PlatformFactory::getCanonicalOpenstackPlatforms方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _cloudCredentialsType
public function _cloudCredentialsType($from, $to, $action)
{
switch ($action) {
case static::ACT_CONVERT_TO_OBJECT:
/* @var $from Entity\CloudCredentials */
$to->cloudCredentialsType = static::$cloudsMap[$from->cloud];
break;
case static::ACT_CONVERT_TO_ENTITY:
/* @var $to Entity\CloudCredentials */
$to->cloud = array_flip(static::$cloudsMap)[$from->cloudCredentialsType];
break;
case static::ACT_GET_FILTER_CRITERIA:
switch ($from->cloudCredentialsType) {
case static::CLOUD_CREDENTIALS_TYPE_OPENSTACK:
$cloud = ['$in' => PlatformFactory::getCanonicalOpenstackPlatforms()];
break;
case static::CLOUD_CREDENTIALS_TYPE_CLOUDSTACK:
$cloud = ['$in' => PlatformFactory::getCloudstackBasedPlatforms()];
break;
case static::CLOUD_CREDENTIALS_TYPE_RACKSPACE:
$cloud = ['$in' => PlatformFactory::getRackspacePlatforms()];
break;
default:
$clouds = array_flip(static::$cloudsMap);
if (empty($clouds[$from->cloudCredentialsType])) {
throw new ApiErrorException(400, ErrorMessage::ERR_INVALID_VALUE, "Unknown cloudCredentialsType '{$from->cloudCredentialsType}'");
}
$cloud = $clouds[$from->cloudCredentialsType];
break;
}
return [['cloud' => $cloud]];
}
}
示例2: _cloudCredentialsType
public function _cloudCredentialsType($from, $to, $action)
{
switch ($action) {
case static::ACT_CONVERT_TO_OBJECT:
/* @var $from Entity\CloudCredentials */
$to->cloudCredentialsType = static::CLOUD_CREDENTIALS_TYPE_OPENSTACK;
break;
case static::ACT_CONVERT_TO_ENTITY:
/* @var $to Entity\CloudCredentials */
$to->cloud = $this->getOpenstackProvider($from);
break;
case static::ACT_GET_FILTER_CRITERIA:
return [['cloud' => ['$in' => PlatformFactory::getCanonicalOpenstackPlatforms()]]];
}
}