mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Add availability zone required parameter for storage and cdn services.
This commit is contained in:
parent
72a307a7fd
commit
cbdd519e6a
2 changed files with 4 additions and 2 deletions
|
@ -5,7 +5,7 @@ module Fog
|
||||||
module CDN
|
module CDN
|
||||||
class HP < Fog::Service
|
class HP < Fog::Service
|
||||||
|
|
||||||
requires :hp_secret_key, :hp_account_id, :hp_tenant_id
|
requires :hp_secret_key, :hp_account_id, :hp_tenant_id, :hp_avl_zone
|
||||||
recognizes :hp_auth_uri, :hp_cdn_uri, :persistent, :connection_options, :hp_use_upass_auth_style, :hp_auth_version
|
recognizes :hp_auth_uri, :hp_cdn_uri, :persistent, :connection_options, :hp_use_upass_auth_style, :hp_auth_version
|
||||||
|
|
||||||
model_path 'fog/hp/models/cdn'
|
model_path 'fog/hp/models/cdn'
|
||||||
|
|
|
@ -5,7 +5,7 @@ module Fog
|
||||||
module Storage
|
module Storage
|
||||||
class HP < Fog::Service
|
class HP < Fog::Service
|
||||||
|
|
||||||
requires :hp_secret_key, :hp_account_id, :hp_tenant_id
|
requires :hp_secret_key, :hp_account_id, :hp_tenant_id, :hp_avl_zone
|
||||||
recognizes :hp_auth_uri, :hp_servicenet, :hp_cdn_ssl, :hp_cdn_uri, :persistent, :connection_options, :hp_use_upass_auth_style, :hp_auth_version
|
recognizes :hp_auth_uri, :hp_servicenet, :hp_cdn_ssl, :hp_cdn_uri, :persistent, :connection_options, :hp_use_upass_auth_style, :hp_auth_version
|
||||||
|
|
||||||
model_path 'fog/hp/models/storage'
|
model_path 'fog/hp/models/storage'
|
||||||
|
@ -37,6 +37,7 @@ module Fog
|
||||||
:hp_auth_uri => @hp_auth_uri,
|
:hp_auth_uri => @hp_auth_uri,
|
||||||
:hp_cdn_uri => @hp_cdn_uri,
|
:hp_cdn_uri => @hp_cdn_uri,
|
||||||
:hp_tenant_id => @hp_tenant_id,
|
:hp_tenant_id => @hp_tenant_id,
|
||||||
|
:hp_avl_zone => @hp_avl_zone,
|
||||||
:connection_options => @connection_options
|
:connection_options => @connection_options
|
||||||
)
|
)
|
||||||
if @cdn.enabled?
|
if @cdn.enabled?
|
||||||
|
@ -137,6 +138,7 @@ module Fog
|
||||||
### Pass the service type for object storage to the authentication call
|
### Pass the service type for object storage to the authentication call
|
||||||
options[:hp_service_type] = "object-store"
|
options[:hp_service_type] = "object-store"
|
||||||
@hp_tenant_id = options[:hp_tenant_id]
|
@hp_tenant_id = options[:hp_tenant_id]
|
||||||
|
@hp_avl_zone = options[:hp_avl_zone]
|
||||||
|
|
||||||
### Make the authentication call
|
### Make the authentication call
|
||||||
if (auth_version == :v2)
|
if (auth_version == :v2)
|
||||||
|
|
Loading…
Add table
Reference in a new issue