Sha256: 62c2d91c184f30f94ce32f22f3feec37f8232cb8625d04d8f6edeabc30ee47c1
Contents?: true
Size: 803 Bytes
Versions: 10
Compression:
Stored size: 803 Bytes
Contents
module NIFTY module Cloud class Base < NIFTY::Base # この値が真のときNIFTY Cloud API側で無視されるパラメータは送信されない @@ignore_amz_params = false def initialize( options={} ) @default_access_key = ACCESS_KEY @default_secret_key = SECRET_KEY @default_endpoint = ENDPOINT_URL @default_proxy_server = PROXY_SERVER @default_user_agent = USER_AGENT @default_max_retry = MAX_RETRY @default_connection_timeout = CONNECTION_TIMEOUT @default_socket_timeout = SOCKET_TIMEOUT @default_signature_method = SIGNATURE_METHOD @default_signature_version = SIGNATURE_VERSION super(options) end end end end
Version data entries
10 entries across 10 versions & 1 rubygems